mirror of
https://github.com/roles-ansible/ansible_role_restic/
synced 2024-11-14 15:40:18 +01:00
15 lines
419 B
YAML
15 lines
419 B
YAML
---
|
|
- name: systemctl restart restic.timer
|
|
become: true
|
|
ansible.builtin.systemd:
|
|
name: "restic-{{ item.name | replace(' ', '') | string }}.timer"
|
|
state: 'restarted'
|
|
daemon_reload: true
|
|
masked: false
|
|
with_items: '{{ restic_backups }}'
|
|
ignore_errors: true
|
|
when:
|
|
- restic_create_schedule
|
|
- item.name is defined
|
|
- item.scheduled | default(false)
|
|
- ansible_service_mgr == 'systemd'
|