1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

replaced && by ||

In the example, you want /bin/true to be executed if the first command has an error return code. Combining command with && will run the second only if the first is successful. Combining them with ||, the second will be run only of the first fails, what is wanted here.
This commit is contained in:
raphinou 2013-03-27 14:37:31 +01:00
parent 4552fa8592
commit ba2582fff6

View file

@ -220,7 +220,7 @@ who's successful exit code is not zero, you may wish to do this::
tasks:
- name: run this command and ignore the result
action: shell /usr/bin/somecommand && /bin/true
action: shell /usr/bin/somecommand || /bin/true
If the action line is getting too long for comfort you can break it on
a space and indent any continuation lines::