summaryrefslogtreecommitdiff
path: root/tests/fixtures/config/remote-action-modules/git/org_project/playbooks/shell-delegate.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fixtures/config/remote-action-modules/git/org_project/playbooks/shell-delegate.yaml')
-rw-r--r--tests/fixtures/config/remote-action-modules/git/org_project/playbooks/shell-delegate.yaml12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/fixtures/config/remote-action-modules/git/org_project/playbooks/shell-delegate.yaml b/tests/fixtures/config/remote-action-modules/git/org_project/playbooks/shell-delegate.yaml
new file mode 100644
index 000000000..7cb81e3b7
--- /dev/null
+++ b/tests/fixtures/config/remote-action-modules/git/org_project/playbooks/shell-delegate.yaml
@@ -0,0 +1,12 @@
+- hosts: all
+ tasks:
+ - name: Normal shell
+ delegate_to: localhost
+ shell: echo 123
+
+ - name: Shell with executable
+ delegate_to: localhost
+ shell: |
+ echo 123
+ args:
+ executable: /bin/bash