mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-12-29 05:15:04 +01:00
11 lines
230 B
YAML
11 lines
230 B
YAML
|
# handlers file for caffeine_auto_start
|
||
|
- name: reload systemd
|
||
|
command: systemctl daemon-reload
|
||
|
|
||
|
- name: enable and start caffeine
|
||
|
systemd:
|
||
|
name: caffeine.service
|
||
|
state: started
|
||
|
enabled: yes
|
||
|
daemon_reload: yes
|