From 90fe472bcb91730846294f56c53b19a9857ae07a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Fri, 24 Nov 2023 16:56:22 +0100 Subject: [PATCH] backup: fix path of backup.sh script for timer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- tasks/backup.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/backup.yml b/tasks/backup.yml index fb961a8..353d705 100644 --- a/tasks/backup.yml +++ b/tasks/backup.yml @@ -7,6 +7,6 @@ systemd_timer_user: '{{ postgres_ha_backup_user }}' systemd_timer_frequency: '{{ postgres_ha_backup_frequency }}' systemd_timer_timeout_sec: '{{ postgres_ha_backup_timeout }}' - systemd_timer_script_path: '/docker/{{ postgres_ha_service_name }}/backup.sh' + systemd_timer_script_path: '{{ postgres_ha_service_path }}/backup.sh' systemd_timer_after_extra: 'docker.service' systemd_timer_start_on_creation: false