homeserver/roles/mgrote_restic/handlers/main.yml
Michael Grote 4c36b9964d
Some checks failed
ci/woodpecker/push/gitleaks Pipeline was successful
ci/woodpecker/push/ansible-lint Pipeline failed
Revert "remove restic (#648)"
This reverts commit 170e788c9b.
2024-05-25 20:56:04 +02:00

29 lines
571 B
YAML

---
- name: systemctl daemon-reload
become: true
ansible.builtin.systemd:
daemon_reload: true
- name: systemctl enable units
become: true
ansible.builtin.systemd:
name: "{{ item }}"
enabled: true
masked: false
with_items:
- media-restic.automount
- media-restic.mount
- restic.service
- restic.timer
- restic_mail.service
- name: systemctl start units
become: true
ansible.builtin.systemd:
name: "{{ item }}"
state: restarted
enabled: true
with_items:
- restic.timer
notify: systemctl daemon-reload