Created
          February 6, 2013 19:11 
        
      - 
      
- 
        Save candidosales/4724969 to your computer and use it in GitHub Desktop. 
    Second
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # ============================================================== | |
| # SET's | |
| # ============================================================== | |
| default_run_options[:pty] = true | |
| ssh_options[:forward_agent] = true | |
| set :domain, "177.71.250.61" | |
| set :application, "midiaexterna" | |
| set :repository, "[email protected]:candidosales/#{application}.git" | |
| ssh_options[:keys] = [File.join(ENV["HOME"], ".ssh", "id_rsa")] | |
| set :user, "ubuntu" | |
| set :use_sudo, false | |
| set :scm, :git | |
| set :branch, "master" | |
| set :deploy_via, :remote_cache | |
| set :deploy_to, "/home/ubuntu/#{application}" | |
| set :keep_releases, 10 | |
| # ============================================================== | |
| # ROLE's | |
| # ============================================================== | |
| server domain, :app, :web, :db, :primary => true | |
| namespace :deploy do | |
| task :start do ; end | |
| task :stop do ; end | |
| task :restart, :roles => :app, :except => { :no_release => true } do | |
| run "#{try_sudo} touch #{File.join(current_path,'tmp','restart.txt')}" | |
| end | |
| end | |
| after "deploy", "deploy:restart" | |
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment