43 lines
1.3 KiB
YAML
43 lines
1.3 KiB
YAML
---
|
|
# Configure globals section
|
|
- name: Configure globals section
|
|
when: network_globals is defined
|
|
ansible.builtin.include_tasks: globals.yml
|
|
|
|
# Configure swconfig switch vlan section
|
|
- name: Configure swconfig switch vlan section
|
|
ansible.builtin.include_tasks: switch_swconfig.yml
|
|
when: network_swconfig_switch_vlans is defined
|
|
loop: "{{ network_swconfig_switch_vlans | default([]) }}"
|
|
|
|
# Configure dsa switch vlan section
|
|
- name: Configure dsa switch vlan section
|
|
ansible.builtin.include_tasks: switch_dsa.yml
|
|
when: network_dsa_switch_vlans is defined
|
|
loop: "{{ network_dsa_switch_vlans | default([]) }}"
|
|
|
|
# Configure device section
|
|
- name: Configure device section
|
|
ansible.builtin.include_tasks: device.yml
|
|
loop: "{{ network_devices | default([]) }}"
|
|
|
|
# Configure interface section
|
|
- name: Configure interface section
|
|
ansible.builtin.include_tasks: interface.yml
|
|
loop: "{{ network_interfaces | default([]) }}"
|
|
|
|
# Configure rule section
|
|
- name: Configure rule section
|
|
ansible.builtin.include_tasks: rule.yml
|
|
loop: "{{ network_rules | default([]) }}"
|
|
|
|
# Configure route section
|
|
- name: Configure route section
|
|
ansible.builtin.include_tasks: route.yml
|
|
loop: "{{ network_routes | default([]) }}"
|
|
|
|
# Apply changes and reload network service
|
|
- name: Apply changes and reload network
|
|
uci:
|
|
command: commit
|
|
notify: Reload network |