Alicia Cozine
Results
22
comments of
Alicia Cozine
We currently have https://docs.ansible.com/ansible/latest/dev_guide/developing_collections_creating.html - should we expand that documentation, or create something new, or both?
Confirmed - this task: ``` - name: use stdout to fail if we find /tmp/bad-file.yml ansible.builtin.command: ls /tmp/bad-file.yml register: result failed_when: result.rc == 0 or "No such" not in result.stdout...