diff --git a/ansible/roles/test/tasks/vlan_configure.yml b/ansible/roles/test/tasks/vlan_configure.yml index c8b0a668329..28371dbc756 100644 --- a/ansible/roles/test/tasks/vlan_configure.yml +++ b/ansible/roles/test/tasks/vlan_configure.yml @@ -51,5 +51,14 @@ shell: config load -y /etc/sonic/vlan_configuration.json become: true +- name: sleep for some time + pause: seconds=30 + +- name: Bring up LAGs + shell: ifconfig {{ item.attachto }} up + with_items: + - "{{ minigraph_portchannel_interfaces }}" + become: true + - name: sleep for some time pause: seconds=10