Sha256: 120b0c0f69094cdd0375208a3d9cec44e4183839d2f074dd94abf15378c72615
Contents?: true
Size: 846 Bytes
Versions: 4
Compression:
Stored size: 846 Bytes
Contents
task :set_railman_env do set :deploy_to, "/home/deploy/apps/#{fetch(:application)}" set :environment, { rails_env: 'production'} set :chruby_prefix, "/usr/local/bin/chruby-exec #{fetch(:chruby_ruby)} -- RAILS_ENV=production " SSHKit.config.command_map[:rake] = "#{fetch(:chruby_prefix)} #{fetch(:deploy_to)}/bin/rake" SSHKit.config.command_map[:bundle] = "#{fetch(:chruby_prefix)} #{fetch(:deploy_to)}/bin/bundle" %w(systemctl certbot).each do |cmd| SSHKit.config.command_map[cmd.to_sym] = "sudo #{cmd}" end SSHKit.config.command_map[:su_rm] = 'sudo rm' SSHKit.config.command_map[:su_ln] = 'sudo ln' SSHKit.config.command_map[:su_cp] = 'sudo cp' end before :setup, :set_railman_env before :deploy, :set_railman_env before :update, :set_railman_env before :reset_server, :set_railman_env before :remove, :set_railman_env
Version data entries
4 entries across 4 versions & 1 rubygems