feat: rename all tag to full

This commit is contained in:
Simon Cornet 2026-02-16 14:45:53 +01:00
commit bb139b8076
2 changed files with 4 additions and 4 deletions

View file

@ -12,7 +12,7 @@ This role configures router functionality on Alpine Linux.
| Tag | Purpose |
| --- | -------- |
| `all` | Execute all tasks |
| `full` | Execute all tasks |
| `routing` | Configure routing and iptables |
| `firewall` | Configure firewall rules |
| `performance` | Configure performance tuning |

View file

@ -4,19 +4,19 @@
- name: "routing"
ansible.builtin.import_tasks: "routing.yaml"
tags:
- "all"
- "full"
- "routing"
# firewall
- name: "firewall"
ansible.builtin.import_tasks: "firewall.yaml"
tags:
- "all"
- "full"
- "firewall"
# performance
- name: "performance"
ansible.builtin.import_tasks: "performance.yaml"
tags:
- "all"
- "full"
- "performance"