Files
apLukov/roles/system/tasks/main.yml
2024-10-30 01:50:38 +01:00

18 lines
417 B
YAML

---
# Configure system section
- name: Configure system section
ansible.builtin.include_tasks: system.yml
# Apply changes and reload system service
- name: Apply changes and reload system
block:
# Commit changes
- name: Commit changes
uci:
command: commit
notify: Reload system
# Reload system service
- name: Reload system service
ansible.builtin.meta: flush_handlers