17 lines
623 B
Bash
Executable file
17 lines
623 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
shopt -s globstar
|
|
shopt -s dotglob
|
|
|
|
notify()
|
|
{
|
|
curl -X POST -H 'Content-Type: Application/json' -d "{\"chat_id\":\"155897358\",\"text\":\"$1\"}" https://api.telegram.org/bot2046849441:AAHQpjRK4xpL8tEUyN4JTSDUUze4J0wSIy4/sendMessage &> /dev/null
|
|
}
|
|
|
|
notify_silent()
|
|
{
|
|
curl -X POST -H 'Content-Type: Application/json' -d "{\"chat_id\":\"155897358\",\"text\":\"$1\",\"disable_notification\":\"true\"}" https://api.telegram.org/bot2046849441:AAHQpjRK4xpL8tEUyN4JTSDUUze4J0wSIy4/sendMessage &> /dev/null
|
|
}
|
|
|
|
docker exec -u 33 cloud php -f /var/www/html/cron.php || notify 'nextcloud : failed to run cron'
|