Skip to content

Instantly share code, notes, and snippets.

@jurassic-gists
Created June 26, 2013 17:51
Show Gist options
  • Select an option

  • Save jurassic-gists/5869671 to your computer and use it in GitHub Desktop.

Select an option

Save jurassic-gists/5869671 to your computer and use it in GitHub Desktop.
role :servers, "iv11", "iv12", "iv13"
task :disk_space, :roles => :servers do
run "df -h"
end
task :system_updates, :roles => :servers do
run "sudo apt-get update && sudo apt-get -y dist-upgrade"
end
task :system_reboot, :roles => :servers do
run "sudo shutdown -r now"
end
task :system_shutdown, :roles => :servers do
run "sudo shutdown -P now"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment