ansible/test/integration/targets/prepare_vyos_tests/tasks/main.yaml

13 lines
399 B
YAML

---
- name: Ensure required interfaces are present in running-config
cli_config:
config: "{{ lines }}"
vars:
lines: |
set interfaces ethernet eth0 address dhcp
set interfaces ethernet eth0 speed auto
set interfaces ethernet eth0 duplex auto
set interfaces ethernet eth1
set interfaces ethernet eth2
delete interfaces loopback lo
ignore_errors: true