Browse Source

further developments to alert_discord.sh

pull/1477/head
Daniel Gibbs 8 years ago
parent
commit
48f001be26
  1. 14
      lgsm/functions/alert_discord.sh

14
lgsm/functions/alert_discord.sh

@ -5,16 +5,4 @@
# Website: https://gameservermanagers.com # Website: https://gameservermanagers.com
# Description: Sends Discord alert including the server status. # Description: Sends Discord alert including the server status.
if [ "$1" == "" ]; then echo "missing message"; exit; fi curl -X POST --data '{ "embeds": [{"title": "${pbalertsubject}", "url": "https://example.com", "description": "${pbalertbody}", "type": "link", "thumbnail": {"url": "https://raw.githubusercontent.com/GameServerManagers/LinuxGSM/master/images/logo/lgsm-square-184-dark.png"}}] }' -H "Content-Type: application/json" "${discordwebhook}"
prefix='{"content":"'
postfix='","file":"content","embed":"content"}'
echo "$prefix $1 $postfix" >f
curl -v -X POST --data @f "${discordwebhook}"
#if [ "${discordsend}" == "invalid_access_token" ]; then
# fn_print_fail_nl "Sending Discord alert: invalid_access_token"
# fn_script_log_fatal "Sending Discord alert: invalid_access_token"
#else
# fn_print_ok_nl "Sending Discord alert"
# fn_script_log_pass "Sent Discord alert"
#fi
Loading…
Cancel
Save