2
0
Fork 0

sh.zio.backup: add ntfy

main
Ducky 2024-03-30 16:59:39 +00:00
parent bbdc4eaa42
commit 16a006ab98
1 changed files with 15 additions and 9 deletions

View File

@ -92,15 +92,21 @@ function invoke_restic() {
if [[ $? == 0 ]]; then
break
else
echo "---- THE OUTPUT: $restic_out"
if [[ $attempts == 0 ]]; then
say warning "Command failed. No attempts left"
say warning "Command failed."
/usr/bin/sh.zio.backup \
--title "Backup failed" \
--message "$restic_out" \
--level "warning"
break
else
attempts=$((attempts - 1))
say warning "Command failed. Trying again in $attempts_delay seconds ($attempts attempts remaining)..."
sleep $attempts_delay
fi
#echo "---- THE OUTPUT: $restic_out"
#if [[ $attempts == 0 ]]; then
# say warning "Command failed. No attempts left"
# break
#else
# attempts=$((attempts - 1))
# say warning "Command failed. Trying again in $attempts_delay seconds ($attempts attempts remaining)..."
# sleep $attempts_delay
#fi
fi
set +o pipefail