diff --git a/readme.md b/readme.md index 200ec15..4a69754 100644 --- a/readme.md +++ b/readme.md @@ -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 | diff --git a/tasks/main.yaml b/tasks/main.yaml index 57178bf..d860648 100644 --- a/tasks/main.yaml +++ b/tasks/main.yaml @@ -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"