configs/roles/common/handlers/main.yml

13 lines
259 B
YAML
Raw Normal View History

---
- name: ensure_systemd_file_is_enabled
ansible.builtin.systemd:
name: disable_usb_wake.service
daemon_reload: yes
enabled: yes
state: restarted
2022-07-04 13:26:16 -04:00
- name: restart_sshd
ansible.builtin.systemd:
name: sshd.service
state: restarted