|
|
@ -1,3 +1,5 @@ |
|
|
|
|
|
|
|
require 'bundler/capistrano' |
|
|
|
|
|
|
|
|
|
|
|
set :application, 'simpledns' |
|
|
|
set :application, 'simpledns' |
|
|
|
set :domain, 'zooz.dyndns.org' |
|
|
|
set :domain, 'zooz.dyndns.org' |
|
|
|
set :repository, "set your repository location here" # TODO: write me |
|
|
|
set :repository, "set your repository location here" # TODO: write me |
|
|
@ -6,6 +8,12 @@ set :use_sudo, false |
|
|
|
set :deploy_to, '/srv/www/apps/entrydns' |
|
|
|
set :deploy_to, '/srv/www/apps/entrydns' |
|
|
|
set :user, 'clyfe' |
|
|
|
set :user, 'clyfe' |
|
|
|
set :scm, 'git' |
|
|
|
set :scm, 'git' |
|
|
|
|
|
|
|
set :branch, "master" |
|
|
|
|
|
|
|
set :scm_verbose, true |
|
|
|
|
|
|
|
#set :deploy_via, :remote_cache/:export .. etc |
|
|
|
|
|
|
|
# set :git_enable_submodules, 1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ssh_options[:forward_agent] = true # use local keys |
|
|
|
|
|
|
|
|
|
|
|
role :web, domain # Your HTTP server, Apache/etc |
|
|
|
role :web, domain # Your HTTP server, Apache/etc |
|
|
|
role :app, domain # This may be the same as your `Web` server |
|
|
|
role :app, domain # This may be the same as your `Web` server |
|
|
@ -13,7 +21,7 @@ role :db, domain, :primary => true # This is where Rails migrations will run |
|
|
|
# role :db, "your slave db-server here" |
|
|
|
# role :db, "your slave db-server here" |
|
|
|
|
|
|
|
|
|
|
|
namespace :deploy do |
|
|
|
namespace :deploy do |
|
|
|
task :start, :roles => :app do |
|
|
|
task :start, :roles => :app, :except => { :no_release => true } do |
|
|
|
run "touch #{current_release}/tmp/restart.txt" |
|
|
|
run "touch #{current_release}/tmp/restart.txt" |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
@ -22,7 +30,7 @@ namespace :deploy do |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
desc "Restart Application" |
|
|
|
desc "Restart Application" |
|
|
|
task :restart, :roles => :app do |
|
|
|
task :restart, :roles => :app, :except => { :no_release => true } do |
|
|
|
run "touch #{current_release}/tmp/restart.txt" |
|
|
|
run "touch #{current_release}/tmp/restart.txt" |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|