forked from tykeal/TykeBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Capfile
79 lines (66 loc) · 2.55 KB
/
Capfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
require "rvm/capistrano" # Load RVM's capistrano plugin.
set :rvm_ruby_string, 'jruby-1.6.3@tykebot'
set :rvm_type, :user
require 'rubygems'
require 'railsless-deploy'
require 'capistrano/ext/multistage'
require 'capistrano/recipes/deploy/strategy/copy'
set :application, 'tykebot'
#default_run_options[:pty] = true
default_run_options[:pty] = false
set :use_sudo, false
set :scm, :git
set :remote, 'origin'
set :deploy_via, :remote_cache
set :repository, 'git://github.com/tykeal/TykeBot.git'
# Force the deploys to always go as the tykebot user
set :user, variables[:user].nil? ? 'tykebot' : variables[:user]
set :copy_exclude, [".git/*", ".git*", "Capfile", "config/deploy"]
ssh_options[:paranoid] = false
ssh_options[:forward_agent] = false
set :deploy_to, "/home/#{user}/deploy/#{application}"
set :shared_children, fetch(:shared_children) + [ "config", "log", "data" ]
set :template_files, ['scripts/botservice.sh']
set (:local_version) { `cat .git/refs/heads/#{branch rescue 'master'}`.strip }
namespace :deploy do
[:start, :stop, :restart].each do |t|
task t do
run "#{current_path}/scripts/botservice.sh #{t}"
end
end
task :template do
(variables[:template_files]||[]).each do |f|
# do replacement
erb=ERB.new open(f){|file| file.read}
put erb.result(binding), "#{release_path}/#{f}"
end
end
task :bundleinstall do
run "cd #{current_path}; gem list | grep -q [b]undler; if [ $? ]; then echo 'bundler already installed' ;else gem install bundler; fi"
run "cd #{current_path} && bundle install"
end
task :symlink, :except => { :no_release => true } do
on_rollback do
if previous_release
run "rm -f #{current_path}; ln -s #{previous_release} #{current_path}; true"
else
logger.important "no previous release to rollback to, rollback of symlink skipped"
end
end
run "ln -sfn #{latest_release} #{current_path}"
#run "ln -sfn #{shared_path}/config/bardic.yaml #{latest_release}/config/bardic.yaml"
run "for i in #{shared_path}/config/*.yaml; do ln -sfn ${i} #{latest_release}/config/; done"
run "ln -sfn #{shared_path}/log #{latest_release}/"
run "rm -rf #{latest_release}/data && ln -sfn #{shared_path}/data #{latest_release}/"
end
end
namespace :rvm do
task :trust_rvmrc do
run "rvm rvmrc trust #{release_path}"
end
end
after "deploy", "deploy:cleanup"
after "deploy:symlink", "rvm:trust_rvmrc", "deploy:restart"
after "rvm:trust_rvmrc", "deploy:bundleinstall"
after "deploy:bundleinstall", "deploy:template"
# vim:ts=2:sw=2:expandtab:ft=ruby