Browse Source

alertdate

feature/alerts-refactor
Daniel Gibbs 4 years ago
parent
commit
1ca8764ac6
No known key found for this signature in database GPG Key ID: 2EBB36015C6D78E2
  1. 2
      lgsm/functions/alert.sh
  2. 2
      lgsm/functions/alert_discord.sh
  3. 2
      lgsm/functions/alert_rocketchat.sh

2
lgsm/functions/alert.sh

@ -180,6 +180,8 @@ if [ "${postalert}" != "on" ]; then
alertmoreinfourl="not enabled" alertmoreinfourl="not enabled"
fi fi
alertdate="$(date)"
# Images # Images
mapimagestatus="$(curl -o /dev/null -s -w "%{http_code}\n" https://raw.githubusercontent.com/${githubuser}/game-server-map-images/main/${shortname}/${alertmap}.jpg)" mapimagestatus="$(curl -o /dev/null -s -w "%{http_code}\n" https://raw.githubusercontent.com/${githubuser}/game-server-map-images/main/${shortname}/${alertmap}.jpg)"
if [ -n "${gdmap}" ]&&[ "${mapimagestatus}" == "200" ]; then if [ -n "${gdmap}" ]&&[ "${mapimagestatus}" == "200" ]; then

2
lgsm/functions/alert_discord.sh

@ -54,7 +54,7 @@ json=$(cat <<EOF
"inline": true "inline": true
}, },
"name": "Server time", "name": "Server time",
"value": "$(date)", "value": "${alertdate}",
"inline": true "inline": true
}, },
{ {

2
lgsm/functions/alert_rocketchat.sh

@ -27,7 +27,7 @@ json=$(cat <<EOF
{ {
"short": true, "short": true,
"title": "Server Time", "title": "Server Time",
"value": "$(date)" "value": "${alertdate}"
}, },
{ {
"short": true, "short": true,

Loading…
Cancel
Save