immosquare-capistrano 0.1.8 → 0.1.9
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 447c1e156a4e170cb1ac076835295e5bd785c408a5969d27fb896721f6081cef
|
4
|
+
data.tar.gz: 704a2355f4789b303cbb8bbba89771fc3f857df766edabf02140cf28fce1eceb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f87d7db7a4c23554173a1d086d34af47d19b7fe28825a2cc62b8344bfa92351dd0dfad4ef623b1c819cd3e56210b10e90e54d6f22cb255771198e4f7a1a5a03
|
7
|
+
data.tar.gz: 07d524944560caba863cca32b468664f519d1cd61c5b6a3a6c713cad5ff2dc70220f0e3c666a338ba7f6791443a3861face3ea962299f2afbd9123ca92807526
|
@@ -8,7 +8,7 @@ Type=notify
|
|
8
8
|
WatchdogSec=10
|
9
9
|
User=<%= fetch(:puma_user) %>
|
10
10
|
WorkingDirectory=<%= current_path %>
|
11
|
-
ExecStart=<%= "#{SSHKit.config.command_map[:bundle]} exec puma -e #{fetch(:stage)}" %>
|
11
|
+
ExecStart=<%= "#{SSHKit.config.command_map[:bundle].gsub("~", "/home/#{fetch(:puma_user)}")} exec puma -e #{fetch(:stage)}" %>
|
12
12
|
ExecReload=/bin/kill -USR1 $MAINPID
|
13
13
|
|
14
14
|
|
@@ -8,7 +8,7 @@ Type=notify
|
|
8
8
|
WatchdogSec=10
|
9
9
|
User=<%= fetch(:sidekiq_user) %>
|
10
10
|
WorkingDirectory=<%= current_path %>
|
11
|
-
ExecStart=<%= "#{SSHKit.config.command_map[:bundle]} exec sidekiq -e #{fetch(:stage)}" %>
|
11
|
+
ExecStart=<%= "#{SSHKit.config.command_map[:bundle].gsub("~", "/home/#{fetch(:sidekiq_user)}")} exec sidekiq -e #{fetch(:stage)}" %>
|
12
12
|
|
13
13
|
UMask=0002
|
14
14
|
|
@@ -8,7 +8,7 @@ Environment=RAILS_ENV=<%= fetch(:stage) %>
|
|
8
8
|
User=<%= fetch(:solid_queue_user) %>
|
9
9
|
WorkingDirectory=<%= current_path %>
|
10
10
|
|
11
|
-
ExecStart=<%= "#{SSHKit.config.command_map[:bundle]} exec rake solid_queue:start" %>
|
11
|
+
ExecStart=<%= "#{SSHKit.config.command_map[:bundle].gsub("~", "/home/#{fetch(:solid_queue_user)}")} exec rake solid_queue:start" %>
|
12
12
|
ExecReload=/bin/kill -HUP $MAINPID
|
13
13
|
ExecStop=/bin/kill -TERM $MAINPID
|
14
14
|
|