summaryrefslogtreecommitdiff
path: root/tests/fixtures/config/remote-action-modules/git/org_project/playbooks/shell-delegate.yaml
blob: 7cb81e3b71c9135a7863a9aec9151a25927974ac (plain)
1
2
3
4
5
6
7
8
9
10
11
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