opscode (owner)

Revisions

gist: 176504 Download_button fork
public
Public Clone URL: git://gist.github.com/176504.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
10
define :foobar do
  execute "something" do
    command "rm -rf #{params[:name]}"
    only_if params[:only_if]
  end
end
 
foobar "/" do
  only_if { false }
end