1234567891011121314151617181920212223242526272829303132 |
- ---
- - name: Ethernet Facts
- hosts: all
- gather_facts: false
- connection: network_cli
- vars:
- ansible_network_os: dellemc.os10.os10
- collections:
- - dellemc.os10
- tasks:
- - name: Fetch facts for- {{ inventory_hostname }}
- dellos10_facts:
- gather_subset: all
- register: facts
- - name: Show Facts for- {{ inventory_hostname }}
- debug:
- msg: "{{ facts }}"
|