82dfa542c2
* Remove 1.1.1.1 from *_config tests * remove from *_smoke and *_system * Miscellaneous other tests * Remove from module documentation as well * Remove from unit tests as well * Remove accidental duplication from rebase
30 lines
751 B
YAML
30 lines
751 B
YAML
---
|
|
- debug: msg="START vyos cli/net_system.yaml on connection={{ ansible_connection }}"
|
|
|
|
# Add minimal testcase to check args are passed correctly to
|
|
# implementation module and module run is successful.
|
|
|
|
- name: setup
|
|
vyos_config:
|
|
lines:
|
|
- delete system name-server 192.0.2.1
|
|
match: none
|
|
|
|
- name: configure name servers using platform agnostic module
|
|
net_system:
|
|
name_servers:
|
|
- 192.0.2.1
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- result.changed == true
|
|
- result.commands[0] is search("set system name-server '192.0.2.1'")
|
|
|
|
- name: setup
|
|
vyos_config:
|
|
lines:
|
|
- delete system name-server 192.0.2.1
|
|
match: none
|
|
|
|
- debug: msg="END vyos cli/net_system.yaml on connection={{ ansible_connection }}"
|