mirror of
https://gitea.0xace.cc/ansible-galaxy/wal-g.git
synced 2024-11-24 23:36:40 +00:00
16 lines
485 B
YAML
16 lines
485 B
YAML
- name: Template systemd backup retention timer
|
|
template:
|
|
src: backup-retention.timer.j2
|
|
dest: /etc/systemd/system/backup-retention.timer
|
|
notify: Restart backup retention timer
|
|
register: backup_retention_timer
|
|
|
|
- name: Enable and start systemd backup retention timer
|
|
systemd:
|
|
name: backup-retention.timer
|
|
enabled: "{{ 'yes' if wal_g_backup_enable else 'no' }}"
|
|
masked: no
|
|
state: started
|
|
daemon_reload: yes
|
|
when: not backup_retention_timer.changed
|