Skip to content

Commit

Permalink
fixed location for kuma ep script
Browse files Browse the repository at this point in the history
  • Loading branch information
dweinholz committed Oct 7, 2024
1 parent 10f3cc3 commit c45a91d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mongodb/mongodb-backup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if [ ! -s "$FILE" ] || [ $(stat -c%s "$FILE") -lt $MIN_SIZE ]; then
fi

# Send a notification using the notify_uptime_kuma.sh script
if ! ./notify_uptime_kuma.sh; then
if ! /notify_uptime_kuma.sh; then
log "Failed to send notification"
fi
log "Backup completed successfully"
2 changes: 1 addition & 1 deletion postgresql/postgresql-backup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ if [ ! -s "$FILE" ] || [ $(stat -c%s "$FILE") -lt $MIN_SIZE ]; then
fi

# Send a notification using the notify_uptime_kuma.sh script
if ! ./notify_uptime_kuma.sh; then
if ! /notify_uptime_kuma.sh; then
log "Failed to send notification"
fi

Expand Down
2 changes: 1 addition & 1 deletion s3/s3_backup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,6 @@ done


# Send a notification using the s3_notify_uptime_kuma.sh script
if ! ./s3_notify_uptime_kuma.sh; then
if ! /s3_notify_uptime_kuma.sh; then
log "Failed to send notification"
fi

0 comments on commit c45a91d

Please sign in to comment.