diff --git a/test/integration/targets/eos_system/tests/eapi/set_hostname.yaml b/test/integration/targets/eos_system/tests/eapi/set_hostname.yaml index d26d9105b8..4d2a7bf1d0 100644 --- a/test/integration/targets/eos_system/tests/eapi/set_hostname.yaml +++ b/test/integration/targets/eos_system/tests/eapi/set_hostname.yaml @@ -5,11 +5,13 @@ eos_config: lines: hostname switch match: none + timeout: 30 provider: "{{ eapi }}" - name: configure hostname eos_system: hostname: foo + timeout: 30 provider: "{{ eapi }}" register: result @@ -20,6 +22,7 @@ - name: verify hostname eos_system: hostname: foo + timeout: 30 provider: "{{ eapi }}" register: result @@ -31,6 +34,7 @@ eos_config: lines: "hostname {{ inventory_hostname }}" match: none + timeout: 30 provider: "{{ eapi }}" - debug: msg="END eapi/set_hostname.yaml"