2014-01-28 52 views
1

我想創建一個基本的任務來複制和鏈接database.yml文件到我的應用程序,但我不明白爲什麼它不工作。如何在另一個Capistrano的任務中調用Capistrano的任務?

我使用Capistrnao 3.1

這是我的lib/Capistrano酒店/任務/ databases.cap文件:

namespace :db_access do 

    # Idea : https://github.com/capistrano/sshkit/blob/master/EXAMPLES.md 
    desc 'Copy production database.yml from local workstation' 
    task :copy_production do 
    on roles :all do 
     execute :mkdir, '-p', "#{shared_path}/config" 
     upload! 'config/deploy/production.database.yml', "#{shared_path}/config/database.yml" 
    end 
    end 


    # Idea : http://stackoverflow.com/questions/9684649/capistrano-cant-deploy-my-database-yml 
    desc 'Create database.yml symlinks to current release' 
    task :create_symlinks do 
    on roles :all do 
     unless test "[ -f #{shared_path}/config/database.yml ]" 
     invoke 'db_access:copy_production' 
     end 
     execute :ln, "-nfs #{shared_path}/config/database.yml #{release_path}/config/database.yml" 
    end 
    end 
end 

這是我得到的輸出中:

[email protected]:/var/www/odpf$ cap production db_access:create_symlinks 
DEBUG [3f670dfd] Running /usr/bin/env [ -f /var/www/odpf/shared/config/database.yml ] on myserver.net 
DEBUG [3f670dfd] Command: [ -f /var/www/odpf/shared/config/database.yml ] 
DEBUG [3f670dfd] Finished in 0.589 seconds with exit status 1 (failed). 
cap aborted! 
**undefined method `verbosity' for "/usr/bin/env db_access:copy_production\n":String** 
/home/douglas/.rvm/gems/[email protected]/gems/sshkit-1.3.0/lib/sshkit/formatters/pretty.rb:10:in `write' 
/home/douglas/.rvm/gems/[email protected]/gems/sshkit-1.3.0/lib/sshkit/backends/printer.rb:14:in `block in execute' 
/home/douglas/.rvm/gems/[email protected]/gems/sshkit-1.3.0/lib/sshkit/backends/printer.rb:13:in `tap' 
/home/douglas/.rvm/gems/[email protected]/gems/sshkit-1.3.0/lib/sshkit/backends/printer.rb:13:in `execute' 
/var/www/odpf/lib/capistrano/tasks/databases.cap:20:in `block (3 levels) in <top (required)>' 
/home/douglas/.rvm/gems/[email protected]/gems/sshkit-1.3.0/lib/sshkit/backends/netssh.rb:54:in `instance_exec' 
/home/douglas/.rvm/gems/[email protected]/gems/sshkit-1.3.0/lib/sshkit/backends/netssh.rb:54:in `run' 
/home/douglas/.rvm/gems/[email protected]/gems/sshkit-1.3.0/lib/sshkit/runners/parallel.rb:12:in `block (2 levels) in execute' 
Tasks: TOP => db_access:create_symlinks 

我不知道如何調用其他任務。我inspirate myslef從https://github.com/capistrano/capistrano/blob/master/lib/capistrano/tasks/deploy.rake

如果我嘗試沒有 '調用' 關鍵字,不 '' 的招牌:

namespace :db_access do 
    # Idea : https://github.com/capistrano/sshkit/blob/master/EXAMPLES.md 
    desc 'Copy production database.yml from local workstation' 
    task :copy_production do 
    on roles :all do 
     execute :mkdir, '-p', "#{shared_path}/config" 
     upload! 'config/deploy/production.database.yml', "#{shared_path}/config/database.yml" 
    end 
    end 

    # Idea : http://stackoverflow.com/questions/9684649/capistrano-cant-deploy-my-database-yml 
    desc 'Create database.yml symlinks to current release' 
    task :create_symlinks do 
    on roles :all do 
     unless test "[ -f #{shared_path}/config/database.yml ]" 
     db_access.copy_production 
     end 
     execute :ln, "-nfs #{shared_path}/config/database.yml #{release_path}/config/database.yml" 
    end 
    end 
end 

結果如下:

[email protected]:/var/www/odpf$ cap production db_access:create_symlinks --trace 
** Invoke production (first_time) 
** Execute production 
** Invoke load:defaults (first_time) 
** Execute load:defaults 
** Invoke db_access:create_symlinks (first_time) 
** Execute db_access:create_symlinks 
cap aborted! 
undefined local variable or method `db_access' for #<SSHKit::Backend::Netssh:0x00000002862340> 
/var/www/odpf/lib/capistrano/tasks/databases.cap:20:in `block (3 levels) in <top (required)>' 
/home/douglas/.rvm/gems/[email protected]/gems/sshkit-1.3.0/lib/sshkit/backends/netssh.rb:54:in `instance_exec' 
/home/douglas/.rvm/gems/[email protected]/gems/sshkit-1.3.0/lib/sshkit/backends/netssh.rb:54:in `run' 
/home/douglas/.rvm/gems/[email protected]/gems/sshkit-1.3.0/lib/sshkit/runners/parallel.rb:12:in `block (2 levels) in execute' 
Tasks: TOP => db_access:create_symlinks 

這必須是一個簡單的syntaxe錯誤,但因爲我找不到解釋我不知道該怎麼做的指南。

感謝您的幫助

回答

2

我的命令 調用 'db_access:copy_production' 是正確的。

問題來自SSH-KIT,它有一個bug。 問題是Capistrano 3.1使用ssh-kit版本1.3。 所以我們必須使用Capistrano 3.0.1,直到ssh-kit得到修復。

解決方法:

gem uninstall capistrano 
gem uninstall capistrano-rails 
gem uninstall sshkit 
rm Gemfile.lock 

修改的Gemfile:

gem 'capistrano', '~> 3.0.1' 
    gem 'sshkit', '~> 1.0.0' 

安裝寶石:

bundle install 
相關問題