ansible/roles/borgbackup_client/handlers/main.yml
otthorn 4642395330
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
[borgbackup_client] Add initial role defintion
2021-03-11 23:29:57 +01:00

18 lines
313 B
YAML

---
- name: Run systemd daemon-reload
systemd:
daemon_reload: true
- name: Start and enable borgmatic timer
systemd:
name: borgmatic.timer
state: started
enabled: true
- name: Start and enable borgmatic service
systemd:
name: borgmatic.service
state: started
enabled: true
...