Making the switch to v2

This commit is contained in:
James Cammarata
2015-05-03 21:47:26 -05:00
parent 8cf4452d48
commit ce3ef7f4c1
486 changed files with 7948 additions and 9070 deletions

25
samples/test_include.yml Normal file
View File

@@ -0,0 +1,25 @@
- hosts: all
gather_facts: no
tasks:
- block:
- include: include.yml a=1
when: 1 == 1
notify: foo
- include: include.yml a={{item}}
with_items:
- foo
- bar
- bam
- include: "{{inventory_hostname}}_include.yml"
- fail:
rescue:
- include: include.yml a=rescue
always:
- include: include.yml a=always
#handlers:
#- name: foo
# include: include.yml a="this is a handler"