mirror of https://github.com/ansible/ansible.git
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.pull/2514/head
parent
4552fa8592
commit
ba2582fff6
Loading…
Reference in New Issue