Initial commit

This commit is contained in:
2024-10-30 01:50:38 +01:00
commit 587ca23374
147 changed files with 7521 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
---
# Configure device section
- name: Configure device section
ansible.builtin.include_tasks: device.yml
# loop: "{{ (wireless_devices | default([])) }}"
loop: "{{ ansible_facts.openwrt_wireless | list }}"
# Configure interface section
- name: Configure interface section
ansible.builtin.include_tasks: interface.yml
loop: "{{ wireless_interfaces | default([]) }}"
loop_control:
loop_var: outerItem
# Apply changes and reload wireless service
- name: Apply changes and reload wireless
uci:
command: commit
notify: Reload wireless