From 116026c5e08076652debd4e01ea76edc18ee5a25 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Wed, 5 Jun 2024 09:13:15 +0200 Subject: [PATCH] Indent entrypoint --- entrypoint.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index f27b571..0eb1a0c 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -2,16 +2,16 @@ case "$MODE" in backup) - echo "Running first backup..." - /etc/periodic/daily/backup.sh - echo "Running cron for daily backups..." - crond -f -l 0 - echo "Cron has exited." + echo "Running first backup..." + /etc/periodic/daily/backup.sh + echo "Running cron for daily backups..." + crond -f -l 0 + echo "Cron has exited." ;; restore) - echo "Restoring from latest backup..." - /usr/lib/backup-duplicity/restore.sh - echo "Done." + echo "Restoring from latest backup..." + /usr/lib/backup-duplicity/restore.sh + echo "Done." ;; *) echo "No such mode." >> /dev/stderr