25 lines
654 B
YAML
25 lines
654 B
YAML
---
|
|
- name: Identity, management and services
|
|
ansible.builtin.import_tasks: identity.yml
|
|
when: switch_identity_enabled | bool
|
|
tags: [identity]
|
|
|
|
- name: Users and SSH keys
|
|
ansible.builtin.import_tasks: users.yml
|
|
when: switch_users_enabled | bool
|
|
tags: [users]
|
|
|
|
- name: VLANs, bridge and ports
|
|
ansible.builtin.import_tasks: vlans.yml
|
|
when: switch_vlans_enabled | bool
|
|
tags: [vlans]
|
|
|
|
- name: Backup configuration
|
|
ansible.builtin.import_tasks: backup.yml
|
|
when: switch_backup_enabled | bool
|
|
tags: [backup]
|
|
|
|
- name: Firmware upgrade
|
|
ansible.builtin.import_tasks: firmware.yml
|
|
when: switch_firmware_enabled | bool
|
|
tags: [firmware]
|