mirror of
https://github.com/capistrano/capistrano
synced 2023-03-27 23:21:18 -04:00
837eaca8b1
This allows the SSH connection attributes to be temporarily overridden
7 lines
134 B
Ruby
7 lines
134 B
Ruby
task :am_i_root do
|
|
on roles(:all) do |host|
|
|
host.user = 'root'
|
|
ident = capture :id, '-a'
|
|
info "I am #{ident}"
|
|
end
|
|
end
|