1
1
require 'capistrano/dsl'
2
2
require 'capistrano/cookbook/helpers/setup_config_values'
3
3
require 'capistrano/cookbook/helpers/substitute_strings'
4
- require 'capistrano/cookbook/helpers/template '
4
+ require 'capistrano/cookbook/helpers/smart_template '
5
5
require 'capistrano/cookbook/nginx'
6
6
require 'capistrano/cookbook/monit'
7
7
require 'securerandom'
@@ -13,22 +13,24 @@ namespace :deploy do
13
13
on roles(:app) do
14
14
# make the config dir
15
15
execute :mkdir, "-p #{shared_path}/config"
16
+ execute :mkdir, "-p /home/#{fetch(:deploy_user)}/.config/systemd/user"
16
17
17
18
# config files to be uploaded to shared/config, see the
18
19
# definition of smart_template for details of operation.
19
20
conf.config_files.each do |file|
20
- smart_template file
21
+ smart_template(file[:source], file[:destination], file[:as_root])
22
+ execute(:chmod, "+x #{file[:destination]}") if file[:executable]
21
23
end
22
24
23
25
# which of the above files should be marked as executable
24
- conf.executable_config_files.each do |file|
25
- execute :chmod, "+x #{shared_path}/config/#{file}"
26
- end
26
+ # conf.executable_config_files.each do |file|
27
+ # execute :chmod, "+x #{shared_path}/config/#{file}"
28
+ # end
27
29
28
30
# symlink stuff which should be... symlinked
29
- conf.symlinks.each do |symlink|
30
- sudo "ln -nfs #{shared_path}/config/#{symlink[:source]} #{sub_strings(symlink[:link])}"
31
- end
31
+ # conf.symlinks.each do |symlink|
32
+ # sudo "ln -nfs #{shared_path}/config/#{symlink[:source]} #{sub_strings(symlink[:link])}"
33
+ # end
32
34
33
35
if File.exists?(File.join('config', 'master.key'))
34
36
upload! File.join('config', 'master.key'), File.join(shared_path, 'config', 'master.key')
41
43
# remove the default nginx configuration as it will tend to conflict with our configs
42
44
before 'deploy:setup_config', 'nginx:remove_default_vhost'
43
45
46
+ # make sure that shared directories etc exist before running otherwise the
47
+ # initial nginx reload won't work because of the nginx log file directory path
48
+ # not existing
49
+ before 'deploy:setup_config', 'deploy:check:directories'
50
+ before 'deploy:setup_config', 'deploy:check:linked_dirs'
51
+
44
52
# After setup config has generated and setup initial files, run the Capistrano Puma
45
53
# tasks responsible for uploading config files. Note that `setup_config` creates overrides
46
54
# for these in `config/deploy/templates` so we're not using the default ones from the gem
47
55
after 'deploy:setup_config', 'puma:config'
48
56
after 'deploy:setup_config', 'puma:nginx_config'
49
57
after 'deploy:setup_config', 'puma:monit:config'
50
58
after 'deploy:setup_config', 'puma:systemd:config'
59
+ after 'deploy:setup_config', 'puma:systemd:enable'
60
+
61
+ # Enable the sidekiq systemd service so that it's started automatically on (re)boot
62
+ after 'deploy:setup_config', 'sidekiq:systemd:enable' if (defined?(Capistrano::Sidekiq) == 'constant' && Capistrano::Sidekiq.class == Class)
51
63
52
64
# reload nginx to it will pick up any modified vhosts from setup_config
53
65
after 'deploy:setup_config', 'nginx:reload'
0 commit comments