mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
|
---
|
||
|
|
||
|
- hosts: localhost
|
||
|
tags: [ 'min' ]
|
||
|
connection: local
|
||
|
gather_subset: "min"
|
||
|
ignore_facter: yes
|
||
|
ignore_ohai: yes
|
||
|
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"
|
||
|
ignore_facter: yes
|
||
|
ignore_ohai: yes
|
||
|
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"
|
||
|
ignore_facter: yes
|
||
|
ignore_ohai: yes
|
||
|
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"
|
||
|
ignore_facter: yes
|
||
|
ignore_ohai: yes
|
||
|
gather_facts: yes
|
||
|
tasks:
|
||
|
- debug: var={{item}}
|
||
|
with_items: [ 'ansible_user_id', 'ansible_interfaces', 'ansible_mounts', 'ansible_virtualization_role' ]
|