mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
318 B
YAML
16 lines
318 B
YAML
11 years ago
|
---
|
||
|
- hosts: all
|
||
|
connection: local
|
||
|
gather_facts: False
|
||
|
|
||
|
tasks:
|
||
|
- action: shell exit 0
|
||
|
register: exit
|
||
|
failed_when: not exit.rc in [0, 1]
|
||
|
- action: shell exit 1
|
||
|
register: exit
|
||
|
failed_when: exit.rc not in [0, 1]
|
||
|
- action: shell exit 2
|
||
|
register: exit
|
||
|
failed_when: exit.rc not in [0, 1]
|