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.
21 lines
402 B
YAML
21 lines
402 B
YAML
2 years ago
|
- hosts: A,B
|
||
|
gather_facts: false
|
||
|
tasks:
|
||
|
- block:
|
||
|
- debug:
|
||
|
changed_when: true
|
||
|
notify:
|
||
|
- handler1
|
||
|
- name: EXPECTED FAILURE
|
||
|
fail:
|
||
|
when: inventory_hostname == 'B'
|
||
|
always:
|
||
|
- debug:
|
||
|
msg: 'always'
|
||
|
- debug:
|
||
|
msg: 'after always'
|
||
|
handlers:
|
||
|
- name: handler1
|
||
|
debug:
|
||
|
msg: 'handler1 ran'
|