bare/report_telegram.sh

14 lines
352 B
Bash
Raw Normal View History

2023-11-27 10:51:07 +11:00
#!/bin/bash
# Feed backup status info to a telegram bot
ONLYFAILED=0 # 0=send full report. 1=report only on failed backups
BARE=/root/scripts/bare/bare.sh
SENDER=/root/scripts/telegram-send/telegram-send.sh
text=$($BARE -T -a check)
[[ $ONLYFAILED -eq 1 ]] && text=$(egrep -v '^.*OK.*:' <<<"$text")
if [[ -n $text ]]; then
$SENDER "$text"
fi