mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-14 12:51:04 +00:00
Show other way to ignore command/shell errors
This commit is contained in:
@@ -222,6 +222,14 @@ who's successful exit code is not zero, you may wish to do this::
|
||||
- name: run this command and ignore the result
|
||||
action: shell /usr/bin/somecommand || /bin/true
|
||||
|
||||
Or this::
|
||||
|
||||
tasks:
|
||||
- name: run this command and ignore the result
|
||||
action: shell /usr/bin/somecommand
|
||||
ignore_errors: True
|
||||
|
||||
|
||||
If the action line is getting too long for comfort you can break it on
|
||||
a space and indent any continuation lines::
|
||||
|
||||
|
||||
Reference in New Issue
Block a user