summaryrefslogtreecommitdiff
path: root/test/integration/test_gathering_facts.yml
blob: eb39c84b597515797f6c43b714a629b96df751d3 (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
30
31
32
33
34
35
36
37
---

- hosts: localhost
  tags: [ 'min' ]
  connection: local
  gather_subset: "!all"
  gather_facts: yes
  tasks:
    - debug: var={{item}}
      with_items: [ 'ansible_user_id', 'ansible_interfaces', 'ansible_mounts', 'ansible_virtualization_role'  ]

- hosts: localhost
  tags: [ 'network' ]
  connection: local
  gather_subset: "network"
  gather_facts: yes
  tasks:
    - debug: var={{item}}
      with_items: [ 'ansible_user_id', 'ansible_interfaces', 'ansible_mounts', 'ansible_virtualization_role' ]

- hosts: localhost
  tags: [ 'hardware' ]
  connection: local
  gather_subset: "hardware"
  gather_facts: yes
  tasks:
    - debug: var={{item}}
      with_items: [ 'ansible_user_id', 'ansible_interfaces', 'ansible_mounts', 'ansible_virtualization_role' ]

- hosts: localhost
  tags: [ 'virtual' ]
  connection: local
  gather_subset: "virtual"
  gather_facts: yes
  tasks:
    - debug: var={{item}}
      with_items: [ 'ansible_user_id', 'ansible_interfaces', 'ansible_mounts', 'ansible_virtualization_role' ]