Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. - hosts: localhost
  2. gather_facts: false
  3. tasks:
  4. - name: check_mode=true check_mode_supported=false
  5. command: date
  6. check_mode: true
  7. - name: check_mode=false check_mode_supported=false
  8. command: date
  9. check_mode: false
  10. - name: check_mode=absent check_mode_supported=false
  11. command: date
  12. - name: check_mode=true check_mode_supported=true
  13. file: path=/tmp/foo state=touch
  14. check_mode: true
  15. - name: check_mode=false check_mode_supported=true
  16. file: path=/tmp/foo state=touch
  17. check_mode: false
  18. - name: check_mode=absent check_mode_supported=true
  19. file: path=/tmp/foo state=touch
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement