summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/ignore_unreachable/test_cannot_connect.yml
blob: 64e2bfea97050f2296c646fd532c6d055437ebd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
- hosts: localhost
  gather_facts: false
  tasks:
    - name: Hi
      ping:
- hosts: [localhost, nonexistent]
  ignore_unreachable: true
  gather_facts: false
  tasks:
    - name: Hi
      ping:
- hosts: nonexistent
  ignore_unreachable: true
  gather_facts: false
  tasks:
    - name: Hi
      ping:
    - name: This should print anyway
      debug:
        msg: This should print worked even though host was unreachable
    - name: Hi
      ping:
      register: should_fail
    - assert:
        that:
          - 'should_fail is unreachable'
          - 'not (should_fail is skipped)'
          - 'not (should_fail is failed)'