-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCapfile
81 lines (65 loc) · 2.44 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
80
load 'deploy' if respond_to?(:namespace) # cap2 differentiator
require 'rubygems'
require 'railsless-deploy'
require 'bundler/capistrano'
load 'config/deploy'
after 'deploy:update', :link_shared_files
task :link_shared_files do
command = shared_files.map do |file|
"rm -f #{release_path}/#{file} && \
ln -s #{shared_path}/#{file} #{release_path}/#{file}"
end.join " && "
run command
end
set(:latest_release) { fetch(:current_path) }
set(:release_path) { fetch(:current_path) }
set(:current_release) { fetch(:current_path) }
set(:current_revision) { capture("cd #{current_path}; git rev-parse --short HEAD").strip }
set(:latest_revision) { capture("cd #{current_path}; git rev-parse --short HEAD").strip }
set(:previous_revision) { capture("cd #{current_path}; git rev-parse --short HEAD@{1}").strip }
namespace :deploy do
desc "Deploy the MFer"
task :default do
update
restart
end
desc "Setup a GitHub-style deployment."
task :setup, :except => { :no_release => true } do
dirs = [ deploy_to, shared_path, "#{shared_path}/tmp/pids", "#{shared_path}/tmp/sockets", "#{shared_path}/log" ]
dirs += shared_children.map { |d| File.join(shared_path, d) }
run "#{try_sudo} mkdir -p #{dirs.join(' ')} && #{try_sudo} chmod g+w #{dirs.join(' ')}"
run "git clone #{repository} #{current_path}"
end
task :update do
transaction do
update_code
run "cd #{current_path} && bundle"
end
end
desc "Update the deployed code."
task :update_code, :except => { :no_release => true } do
run "cd #{current_path}; git fetch origin; git reset --hard #{branch}"
end
task :restart, :roles => :app, :except => { :no_release => true } do
sudo "/etc/init.d/#{application}_app restart"
end
task :start, :roles => :app, :except => { :no_release => true } do
sudo "/etc/init.d/#{application}_app start"
end
namespace :rollback do
desc "Moves the repo back to the previous version of HEAD"
task :repo, :except => { :no_release => true } do
set :branch, "HEAD@{1}"
deploy.default
end
desc "Rewrite reflog so HEAD@{1} will continue to point to at the next previous release."
task :cleanup, :except => { :no_release => true } do
run "cd #{current_path}; git reflog delete --rewrite HEAD@{1}; git reflog delete --rewrite HEAD@{1}"
end
desc "Rolls back to the previously deployed version."
task :default do
rollback.repo
rollback.cleanup
end
end
end