summaryrefslogtreecommitdiff
path: root/test/integration/targets/eos_system/tests/eapi/set_hostname.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/eos_system/tests/eapi/set_hostname.yaml')
-rw-r--r--test/integration/targets/eos_system/tests/eapi/set_hostname.yaml36
1 files changed, 0 insertions, 36 deletions
diff --git a/test/integration/targets/eos_system/tests/eapi/set_hostname.yaml b/test/integration/targets/eos_system/tests/eapi/set_hostname.yaml
deleted file mode 100644
index b2a17d4d2b..0000000000
--- a/test/integration/targets/eos_system/tests/eapi/set_hostname.yaml
+++ /dev/null
@@ -1,36 +0,0 @@
----
-- debug: msg="START eapi/set_hostname.yaml"
-
-- name: setup
- eos_config:
- lines: hostname switch
- match: none
- become: yes
-
-- name: configure hostname
- eos_system:
- hostname: foo
- become: yes
- register: result
-
-- assert:
- that:
- - "result.changed == true"
-
-- name: verify hostname
- eos_system:
- hostname: foo
- become: yes
- register: result
-
-- assert:
- that:
- - "result.changed == false"
-
-- name: teardown
- eos_config:
- lines: "hostname {{ inventory_hostname }}"
- match: none
- become: yes
-
-- debug: msg="END eapi/set_hostname.yaml"