custom-outcome.yml 335 B

1234567891011121314
  1. ---
  2. - name: configure a task with custom outcome recognition
  3. hosts: localhost
  4. gather_facts: no
  5. tasks:
  6. - name: execute the bomb
  7. command: ./change-something-or-not.sh
  8. register: outcome
  9. failed_when: outcome.stderr != ""
  10. changed_when: "'we fixed' in outcome.stdout"
  11. - debug:
  12. var: outcome
  13. ...