From 8df175fa90ba72664ff7c9ed594adfdd75463015 Mon Sep 17 00:00:00 2001 From: Ricardo Carrillo Cruz Date: Wed, 12 Jul 2017 12:45:18 +0200 Subject: [PATCH] Make sure the Ethernet interfaces are up before running EOS tests (#26691) --- test/integration/targets/prepare_eos_tests/tasks/main.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test/integration/targets/prepare_eos_tests/tasks/main.yml b/test/integration/targets/prepare_eos_tests/tasks/main.yml index 0e9f36e49f7..428d75829ac 100644 --- a/test/integration/targets/prepare_eos_tests/tasks/main.yml +++ b/test/integration/targets/prepare_eos_tests/tasks/main.yml @@ -7,3 +7,10 @@ provider: "{{ cli }}" register: eos_eapi_output connection: local + + - name: enable ethernet interfaces + eos_config: + int Ethernet1 + no shutdown + int Ethernet2 + no shutdown