Update backup scripts
This commit is contained in:
parent
0ed17e8215
commit
cd9973fdc1
1 changed files with 3 additions and 3 deletions
|
@ -26,7 +26,7 @@ echo "$drive2 / $mount2 / $mounted2"
|
||||||
echo "$drive3 / $mount3 / $mounted3"
|
echo "$drive3 / $mount3 / $mounted3"
|
||||||
|
|
||||||
# If any drive isn't found, exit:
|
# If any drive isn't found, exit:
|
||||||
if [[ $mounted1 != 0 ]] || [[ munted2 != 0 ]] || [[ $mounted3 != 0 ]] ; then
|
if [[ $mounted1 != 0 ]] || [[ mounted2 != 0 ]] || [[ $mounted3 != 0 ]] ; then
|
||||||
payload="{\"message\": \"Backup stopped. One or more local drives are not mounted.\nDate: `date`\", \"priority\": 2,\"title\": \"backups-rpi4: Backup Stopped\"}"
|
payload="{\"message\": \"Backup stopped. One or more local drives are not mounted.\nDate: `date`\", \"priority\": 2,\"title\": \"backups-rpi4: Backup Stopped\"}"
|
||||||
curl -X "POST" "https://gotify.sysctl.io/message" -H "accept: application/json" -H "Content-Type: application/json" -H "X-Gotify-Key: $GOTIFY_TOKEN" -d "$payload"
|
curl -X "POST" "https://gotify.sysctl.io/message" -H "accept: application/json" -H "Content-Type: application/json" -H "X-Gotify-Key: $GOTIFY_TOKEN" -d "$payload"
|
||||||
|
|
||||||
|
@ -156,7 +156,7 @@ echo "$drive2 / $mount2 / $mounted2"
|
||||||
echo "$drive3 / $mount3 / $mounted3"
|
echo "$drive3 / $mount3 / $mounted3"
|
||||||
|
|
||||||
# If any drive isn't found, exit:
|
# If any drive isn't found, exit:
|
||||||
if [[ $mounted1 != 0 ]] || [[ munted2 != 0 ]] || [[ $mounted3 != 0 ]] ; then
|
if [[ $mounted1 != 0 ]] || [[ mounted2 != 0 ]] || [[ $mounted3 != 0 ]] ; then
|
||||||
payload="{\"message\": \"Data Vol Backup stopped. One or more local drives are not mounted.\nDate: `date`\", \"priority\": 2,\"title\": \"backups-rpi4: Data Vol Backup Stopped\"}"
|
payload="{\"message\": \"Data Vol Backup stopped. One or more local drives are not mounted.\nDate: `date`\", \"priority\": 2,\"title\": \"backups-rpi4: Data Vol Backup Stopped\"}"
|
||||||
curl -X "POST" "https://gotify.sysctl.io/message" -H "accept: application/json" -H "Content-Type: application/json" -H "X-Gotify-Key: $GOTIFY_TOKEN" -d "$payload"
|
curl -X "POST" "https://gotify.sysctl.io/message" -H "accept: application/json" -H "Content-Type: application/json" -H "X-Gotify-Key: $GOTIFY_TOKEN" -d "$payload"
|
||||||
|
|
||||||
|
@ -222,7 +222,7 @@ echo "$drive2 / $mount2 / $mounted2"
|
||||||
echo "$drive3 / $mount3 / $mounted3"
|
echo "$drive3 / $mount3 / $mounted3"
|
||||||
|
|
||||||
# If any drive isn't found, exit:
|
# If any drive isn't found, exit:
|
||||||
if [[ $mounted1 != 0 ]] && [[ munted2 != 0 ]] && [[ $mounted3 != 0 ]] ; then
|
if [[ $mounted1 != 0 ]] && [[ mounted2 != 0 ]] && [[ $mounted3 != 0 ]] ; then
|
||||||
payload="{\"message\": \"sysctl.io Backup stopped. One or more local drives are not mounted.\nDate: `date`\", \"priority\": 2,\"title\": \"backups-rpi4: sysctl.io Backup Stopped\"}"
|
payload="{\"message\": \"sysctl.io Backup stopped. One or more local drives are not mounted.\nDate: `date`\", \"priority\": 2,\"title\": \"backups-rpi4: sysctl.io Backup Stopped\"}"
|
||||||
curl -X "POST" "https://gotify.sysctl.io/message" -H "accept: application/json" -H "Content-Type: application/json" -H "X-Gotify-Key: $GOTIFY_TOKEN" -d "$payload"
|
curl -X "POST" "https://gotify.sysctl.io/message" -H "accept: application/json" -H "Content-Type: application/json" -H "X-Gotify-Key: $GOTIFY_TOKEN" -d "$payload"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue