Skip to content

Instantly share code, notes, and snippets.

@cliffdickerson
Created October 13, 2010 06:39
Show Gist options
  • Save cliffdickerson/623585 to your computer and use it in GitHub Desktop.
Save cliffdickerson/623585 to your computer and use it in GitHub Desktop.
role :libs, "root@tomcat01", "root@coherence01"
role :db, "root@mysql01"
task :search_libs, :roles => :libs do
run "ls -x1 /usr/lib |grep -i lib"
end
task :count_libs, :roles => :libs do
run "ls -x1 /usr/lib |wc -l"
end
task :show_free_space, :roles => :db do
run "df -h /"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment