mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
417 B
YAML
14 lines
417 B
YAML
5 years ago
|
---
|
||
|
- name: Ensure required interfaces are present in running-config
|
||
|
ansible.netcommon.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
|