mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
8 lines
307 B
YAML
8 lines
307 B
YAML
- name: create cleanup-backups.timer
|
|
template:
|
|
src: "cleanup-backups.timer.j2"
|
|
dest: "/etc/systemd/system/cleanup-backups.timer"
|
|
register: cleanup_backups_timer
|
|
changed_when: cleanup_backups_timer.changed or activate_all_timers | default(false) | bool
|
|
notify: restart cleanup-backups.timer
|