]> gitweb.hhaalo.de Git - simple-backup.git/commitdiff
start and success message
authorBastian Dehn <hhaalo@arcor.de>
Sat, 24 May 2025 10:38:03 +0000 (12:38 +0200)
committerBastian Dehn <hhaalo@arcor.de>
Sat, 24 May 2025 10:38:03 +0000 (12:38 +0200)
backup

diff --git a/backup b/backup
index a708ce13ca6313cda23f9cbeb628b605b22346c7..11bc2dff5bed79ddaf05b0000ffa3489067768f7 100755 (executable)
--- 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 $*