do-something.yml 417 B

1234567891011121314151617181920212223
  1. ---
  2. - name: bogus
  3. hosts: servers
  4. gather_facts: no
  5. #order: shuffle
  6. max_fail_percentage: 34%
  7. serial:
  8. - 50%
  9. - 100%
  10. tasks:
  11. - name: create a directory /tmp/foo
  12. file:
  13. path: /tmp/foo
  14. state: absent
  15. # - name: just pretend
  16. # #run_once: yes
  17. # command: sleep 1
  18. # changed_when: false
  19. - name: pretend some more
  20. command: echo foo
  21. changed_when: false