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.
18 lines
437 B
YAML
18 lines
437 B
YAML
10 years ago
|
- hosts: localhost
|
||
|
connection: local
|
||
|
gather_facts: no
|
||
|
tasks:
|
||
|
- block:
|
||
|
- command: /bin/false
|
||
|
- debug: msg="you shouldn't see me"
|
||
|
rescue:
|
||
|
- debug: msg="this is the rescue"
|
||
|
- command: /bin/false
|
||
|
- debug: msg="you shouldn't see this either"
|
||
|
always:
|
||
|
- debug: msg="this is the always block, it will always be seen"
|
||
|
when: foo|default('') != "some value"
|
||
|
tags:
|
||
|
- foo
|
||
|
- bar
|