From f0814f4bbf75ba35a7e77f0eaa73a6a79a48572b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bauer?= Date: Sat, 11 Nov 2017 11:34:18 +0100 Subject: [PATCH] fixed backup function name --- containers/zammad-postgresql/backup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/zammad-postgresql/backup.sh b/containers/zammad-postgresql/backup.sh index 601fdf6..94eb57c 100644 --- a/containers/zammad-postgresql/backup.sh +++ b/containers/zammad-postgresql/backup.sh @@ -28,7 +28,7 @@ if [ "$1" = 'zammad-backup' ]; then check_railsserver_available while true; do - backup + zammad_backup # wait until next backup sleep ${BACKUP_SLEEP} @@ -38,5 +38,5 @@ fi if [ "$1" = 'zammad-backup-once' ]; then check_railsserver_available - backup + zammad_backup fi