From: Bastian Dehn Date: Sat, 24 May 2025 10:38:03 +0000 (+0200) Subject: start and success message X-Git-Url: https://gitweb.hhaalo.de/?a=commitdiff_plain;h=21682cb34d906c1b298a81f6776b16e4e06432f3;p=simple-backup.git start and success message --- diff --git a/backup b/backup index a708ce1..11bc2df 100755 --- a/backup +++ b/backup @@ -459,6 +459,8 @@ main() LIGHTGREEN="\e[1;32m" RESET="\e[0m" + echo "⭐ START: backup" + command -v yq > /dev/null || errlog "command yq not found" || return $? [ -f "config.yaml" ] \ || errlog "file config.yaml not found" \ @@ -477,6 +479,8 @@ main() CheckBackupDate CleanUpBackups + + echo "✅ SUCCESS: backup" } main $*