mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
874 B
YAML
43 lines
874 B
YAML
8 years ago
|
---
|
||
|
- debug: msg="START cli/facts.yaml"
|
||
|
|
||
|
- name: test all facts
|
||
|
dellos6_facts:
|
||
|
gather_subset:
|
||
|
- all
|
||
|
provider: "{{ cli }}"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
- "result.ansible_facts is defined"
|
||
|
|
||
|
- name: test all facts except hardware
|
||
|
dellos6_facts:
|
||
|
gather_subset:
|
||
|
- "!hardware"
|
||
|
provider: "{{ cli }}"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
- "result.ansible_facts.ansible_net_memfree_mb is not defined"
|
||
|
|
||
|
- name: test interface facts
|
||
|
dellos6_facts:
|
||
|
gather_subset:
|
||
|
- interfaces
|
||
|
provider: "{{ cli }}"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
- "result.ansible_facts.ansible_net_interfaces is defined"
|
||
|
- "result.ansible_facts.ansible_net_memfree_mb is not defined"
|
||
|
|
||
|
|
||
|
- debug: msg="END cli/facts.yaml"
|