Update scripts

This commit is contained in:
albert 2024-04-15 12:56:32 +09:00
parent 3d6a8dfdac
commit dcea5ae568
No known key found for this signature in database
GPG key ID: 64F6C4EB46C4543A
3 changed files with 3 additions and 3 deletions

View file

@ -28,7 +28,7 @@ if [[ $mounted1 != 0 ]] || [[ $mounted2 != 0 ]] || [[ $mounted3 != 0 ]] ; then
fi
# If an old backup is still running, don't continue
if [[ `ps aux | grep rsync | grep -v grep | grep -v $BACKUP_NAME` ]] ; then
if [[ `ps aux | grep $BACKUP_NAME | grep -v grep` ]] ; then
echo -e "$BACKUP_NAME rsync still running. Exiting...."
payload="{\"message\": \"$BACKUP_NAME stopped. $BACKUP_NAME is still running.\nDate: `date`\", \"priority\": 2,\"title\": \"japan-rpi4: $BACKUP_NAME 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"

View file

@ -28,7 +28,7 @@ if [[ $mounted1 != 0 ]] || [[ $mounted2 != 0 ]] || [[ $mounted3 != 0 ]] ; then
fi
# If an old backup is still running, don't continue
if [[ `ps aux | grep rsync | grep -v grep | grep -v $BACKUP_NAME` ]] ; then
if [[ `ps aux | grep $BACKUP_NAME | grep -v grep` ]] ; then
echo -e "$BACKUP_NAME rsync still running. Exiting...."
payload="{\"message\": \"$BACKUP_NAME stopped. $BACKUP_NAME is still running.\nDate: `date`\", \"priority\": 2,\"title\": \"japan-rpi4: $BACKUP_NAME 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"

View file

@ -27,7 +27,7 @@ if [[ $mounted1 != 0 ]] || [[ $mounted2 != 0 ]] || [[ $mounted3 != 0 ]] ; then
fi
# If an old backup is still running, don't continue
if [[ `ps aux | grep rsync | grep -v grep | grep -v rsync-sysctl` ]] ; then
if [[ `ps aux | grep $BACKUP_NAME | grep -v grep` ]] ; then
echo -e "$BACKUP_NAME rsync still running. Exiting...."
payload="{\"message\": \"$BACKUP_NAME stopped. $BACKUP_NAME is still running.\nDate: `date`\", \"priority\": 2,\"title\": \"japan-rpi4: $BACKUP_NAME 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"