summaryrefslogtreecommitdiff
path: root/test/integration/targets/prepare_eos_tests/tasks/main.yml
blob: f2bbc5c40976fe13c0409a2ed9db073a9b0c98eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- name: Enable Ethernet1 interface and disable switchport
  eos_config:
    lines:
      - no shutdown
      - no switchport
    parents: int Ethernet1
    authorize: yes
  connection: local

- name: Enable Ethernet2 interface and disable switchport
  eos_config:
    lines:
      - no shutdown
      - no switchport
    parents: int Ethernet2
    authorize: yes
  connection: local