Last active
March 5, 2018 15:04
-
-
Save resmo/3238faf3cb386a49abd33df4b5aaadaf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- hosts: localhost | |
tasks: | |
- name: exmaple block with when | |
when: 1 == 1 | |
block: | |
- name: task 1 | |
debug: | |
msg: run task | |
- name: task 2 | |
debug: | |
msg: run task | |
- name: task 3 | |
debug: | |
msg: run task | |
- name: task 3 | |
debug: | |
msg: run task |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment