mirror of
https://github.com/guezoloic/serverconfig.git
synced 2026-01-25 07:34:23 +00:00
11 lines
266 B
Bash
11 lines
266 B
Bash
#!/bin/bash
|
|
|
|
source /etc/serverconfig/.env
|
|
|
|
send_notification() {
|
|
local message="$1"
|
|
curl -X POST "https://api.telegram.org/bot$TELEGRAM_TOKEN/sendMessage" \
|
|
-d "chat_id=$TELEGRAM_CHAT_ID" \
|
|
-d "text=$message" \
|
|
-d "parse_mode=HTML"
|
|
} |