Update scripts
This commit is contained in:
parent
3d6a8dfdac
commit
dcea5ae568
3 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue