summaryrefslogtreecommitdiff
path: root/tests/integration/targets/vyos_system
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/targets/vyos_system')
-rw-r--r--tests/integration/targets/vyos_system/tests/cli/net_system.yaml30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/integration/targets/vyos_system/tests/cli/net_system.yaml b/tests/integration/targets/vyos_system/tests/cli/net_system.yaml
deleted file mode 100644
index 758ba40e..00000000
--- a/tests/integration/targets/vyos_system/tests/cli/net_system.yaml
+++ /dev/null
@@ -1,30 +0,0 @@
----
-- debug: msg="START vyos cli/net_system.yaml on connection={{ ansible_connection
- }}"
-
-- name: setup
- ignore_errors: true
- vyos.vyos.vyos_config:
- lines:
- - delete system name-server 192.0.2.1
- match: none
-
-- name: configure name servers using platform agnostic module
- register: result
- ansible.netcommon.net_system:
- name_servers:
- - 192.0.2.1
-
-- assert:
- that:
- - result.changed == true
- - result.commands[0] is search("set system name-server '192.0.2.1'")
-
-- name: setup
- ignore_errors: true
- vyos.vyos.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 }}"