gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
817 B
23 lines
817 B
#!/bin/bash
|
|
# LGSM alert_pushbullet.sh function
|
|
# Author: Daniel Gibbs
|
|
# Website: https://gameservermanagers.com
|
|
lgsm_version="140516"
|
|
|
|
# Description: alerts using pushbullet.
|
|
|
|
local modulename="Alert"
|
|
function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
|
|
fn_print_dots "Sending Pushbullet alert"
|
|
sleep 1
|
|
|
|
pushbulletsend=$(curl --silent -u """${pushbullettoken}"":" -d type="note" -d body="${alertbody}" -d title="${alertsubject}" 'https://api.pushbullet.com/v2/pushes'|grep -o invalid_access_token|uniq)
|
|
|
|
if [ "${pushbulletsend}" == "invalid_access_token" ]; then
|
|
fn_print_fail_nl "Sending Pushbullet alert: invalid_access_token"
|
|
fn_scriptlog "Failure! Sending Pushbullet alert: invalid_access_token"
|
|
else
|
|
fn_print_ok_nl "Sending Pushbullet alert"
|
|
fn_scriptlog "Complete! Sent Pushbullet alert"
|
|
fi
|
|
|
|
|