1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00
capistrano/spec/support/tasks/root.rake
2016-02-28 17:56:07 -06:00

11 lines
223 B
Ruby

task :am_i_root do
on roles(:all) do |host|
host.user = "root"
ident = capture :id, "-a"
info "I am #{ident}"
end
on roles(:all) do |_host|
ident = capture :id, "-a"
info "I am #{ident}"
end
end