Skip to content

Instantly share code, notes, and snippets.

@chef
Forked from adelcambre/gist:176500
Created August 27, 2009 19:42
Show Gist options
  • Save chef/176504 to your computer and use it in GitHub Desktop.
Save chef/176504 to your computer and use it in GitHub Desktop.
define :foobar do
execute "something" do
command "rm -rf #{params[:name]}"
only_if params[:only_if]
end
end
foobar "/" do
only_if { false }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment