Commit 36274f63 authored by Simon Cornet's avatar Simon Cornet
Browse files

chore: restructure tasks - install, routing, firewall, performance

parent d2ecc29d
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -12,7 +12,9 @@ This role configures router functionality on Alpine Linux.
## Tasks

1. **install** - Install router components
2. **config** - Configure router settings
2. **routing** - Configure routing
3. **firewall** - Configure firewall
4. **performance** - Configure performance

## Testing

tasks/config.yaml

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
---
# Configure router

tasks/firewall.yaml

0 → 100644
+2 −0
Original line number Diff line number Diff line
---
# Configure firewall
+8 −2
Original line number Diff line number Diff line
@@ -3,5 +3,11 @@
- name: "install"
  ansible.builtin.import_tasks: "install.yaml"

- name: "config"
  ansible.builtin.import_tasks: "config.yaml"
- name: "routing"
  ansible.builtin.import_tasks: "routing.yaml"

- name: "firewall"
  ansible.builtin.import_tasks: "firewall.yaml"

- name: "performance"
  ansible.builtin.import_tasks: "performance.yaml"

tasks/performance.yaml

0 → 100644
+2 −0
Original line number Diff line number Diff line
---
# Configure performance
Loading