From f6f02877e64411ea4c2ba5efbd58f511b4c2e3e0 Mon Sep 17 00:00:00 2001 From: belgotux Date: Mon, 9 Jan 2023 00:18:47 +0100 Subject: [PATCH] add pushover support at boot --- nutNotifyBoot.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nutNotifyBoot.sh b/nutNotifyBoot.sh index 1b57f6c..b90b74c 100644 --- a/nutNotifyBoot.sh +++ b/nutNotifyBoot.sh @@ -49,7 +49,9 @@ if [ -e $flagfile ] ; then pushbullet) sleep 30; sendPushBullet "$pushbulletSubject" "$text" ;; telegram) - sleep30; sendTelegram "$text" "$telegramSubject" ;; + sleep 30; sendTelegram "$text" "$telegramSubject" ;; + pushover) + sleep 30; sendPushover "$text" "$pushoverSubject" ;; esac rm $flagfile fi