Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. use_inline_resources
  2. action :doit do
  3. unless File.exist("/tmp/doit")
  4. converge_by("creating /tmp/doit") do
  5. FileUtils.touch("/tmp/doit")
  6. end
  7. end
  8. end
  9.  
  10. use_inline_resources
  11. action :doit do
  12. file "/tmp/doit"
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement