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.
17 lines
515 B
YAML
17 lines
515 B
YAML
5 years ago
|
---
|
||
|
- name: Setup
|
||
|
cli_config:
|
||
|
config: "{{ lines }}"
|
||
|
vars:
|
||
|
lines: |
|
||
|
set interfaces ethernet "{{ intf }}" description 'Configured by Ansible'
|
||
|
set interfaces ethernet "{{ intf }}" speed 'auto'
|
||
|
set interfaces ethernet "{{ intf }}" duplex 'auto'
|
||
|
set interfaces ethernet "{{ intf }}" mtu '1500'
|
||
|
set interfaces ethernet "{{ intf }}" vif 200
|
||
|
set interfaces ethernet "{{ intf }}" vif 200 description 'VIF - 200'
|
||
|
loop:
|
||
|
- eth1
|
||
|
- eth2
|
||
|
loop_control:
|
||
|
loop_var: intf
|