Created
June 26, 2013 17:51
-
-
Save jurassic-gists/5869671 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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