ham-hotspot/ansible/handlers/main.yml
2025-04-26 13:02:20 -05:00

23 lines
363 B
YAML

---
- name: Reload systemd
systemd:
daemon_reload: yes
- name: Restart hostapd
systemd:
name: hostapd
state: restarted
enabled: yes
- name: Restart dnsmasq
systemd:
name: dnsmasq
state: restarted
enabled: yes
- name: Restart unblock-wlan service
systemd:
name: unblock-wlan.service
state: restarted
enabled: yes