summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/callback_default/test_async.yml
blob: 57294a4c005cc3e104e2d28ace56edd2f16363b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
- hosts: testhost
  gather_facts: no
  tasks:
      - name: test success async output
        command: sleep 1
        async: 10
        poll: 1

      - name: test failure async output
        command: sleep 10
        async: 1
        poll: 1
        ignore_errors: yes