diff options
Diffstat (limited to '')
-rw-r--r-- | examples/roles/bobbins/tasks/main.yml | 3 | ||||
-rw-r--r-- | examples/roles/hello/meta/main.yml | 3 | ||||
-rw-r--r-- | examples/roles/morecomplex/handlers/main.yml | 2 | ||||
-rw-r--r-- | examples/roles/morecomplex/tasks/main.yml | 8 |
4 files changed, 16 insertions, 0 deletions
diff --git a/examples/roles/bobbins/tasks/main.yml b/examples/roles/bobbins/tasks/main.yml new file mode 100644 index 0000000..8df6c6b --- /dev/null +++ b/examples/roles/bobbins/tasks/main.yml @@ -0,0 +1,3 @@ +--- +- name: test tasks + action: git a=b c=d diff --git a/examples/roles/hello/meta/main.yml b/examples/roles/hello/meta/main.yml new file mode 100644 index 0000000..b15a998 --- /dev/null +++ b/examples/roles/hello/meta/main.yml @@ -0,0 +1,3 @@ +--- +dependencies: + - role: bobbins diff --git a/examples/roles/morecomplex/handlers/main.yml b/examples/roles/morecomplex/handlers/main.yml new file mode 100644 index 0000000..3d5b393 --- /dev/null +++ b/examples/roles/morecomplex/handlers/main.yml @@ -0,0 +1,2 @@ +- name: restart service using command + command: service bar restart diff --git a/examples/roles/morecomplex/tasks/main.yml b/examples/roles/morecomplex/tasks/main.yml new file mode 100644 index 0000000..ed68394 --- /dev/null +++ b/examples/roles/morecomplex/tasks/main.yml @@ -0,0 +1,8 @@ +- name: test bad command + action: command mkdir blah + +- name: test bad command v2 + command: mkdir blah + +- name: test bad local command + local_action: shell touch foo |