1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00
capistrano/spec/support/tasks/database.rake
Kir Shatrov 7e41233d76 Using .rake extension instead of .cap
In tests and default templates
2014-01-23 11:07:13 +04:00

11 lines
232 B
Ruby

namespace :deploy do
namespace :check do
task :linked_files => 'config/database.yml'
end
end
remote_file 'config/database.yml' => '/tmp/database.yml', roles: :all
file '/tmp/database.yml' do |t|
sh "touch #{t.name}"
end