You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.2 KiB
Bash
36 lines
1.2 KiB
Bash
3 years ago
|
#!/bin/bash
|
||
|
# ______ _____ _ _ _____ _
|
||
|
# | ___ \ / ___| | | | |_ _| | |
|
||
|
# | |_/ / _ _______ _ __ ___ \ `--.| |__ __ _ _ __ __| | | | ___ ___ | |___
|
||
|
# | / | | |_ / _ \| '_ ` _ \ `--. \ '_ \ / _` | '__/ _` | | |/ _ \ / _ \| / __|
|
||
|
# | |\ \ |_| |/ / (_) | | | | | | /\__/ / | | | (_| | | | (_| | | | (_) | (_) | \__ \
|
||
|
# \_| \_\__, /___\___/|_| |_| |_| \____/|_| |_|\__,_|_| \__,_| \_/\___/ \___/|_|___/
|
||
|
# __/ |
|
||
|
# |___/
|
||
|
#
|
||
|
# Ryzom - MMORPG Framework <https://ryzom.com/dev/>
|
||
|
# Copyright (C) 2019 Winch Gate Property Limited
|
||
|
# This program is free software: read https://ryzom.com/dev/copying.html for more details
|
||
|
#
|
||
|
# This script will notify external services like RocketChat or Web Apps
|
||
|
#
|
||
|
|
||
|
COMMAND=$1
|
||
|
shift
|
||
|
|
||
|
CWD=$(dirname "$0")
|
||
|
. "$CWD/config.sh"
|
||
|
|
||
|
if [[ "$COMMAND" = "ServiceStarted" ]]
|
||
|
then
|
||
|
if [[ -z "$NOTIFY_URL_SERVICE_RESTARTED" ]]
|
||
|
then
|
||
|
curl "$NOTIFY_URL_SERVICE_RESTARTED?command=started&shard=$(hostname -s)&apikey=$NOTIFY_URL_KEY&service=$2"
|
||
|
fi
|
||
|
|
||
|
elif [[ "$COMMAND" = "ServiceStoped" ]]
|
||
|
then
|
||
|
curl "$NOTIFY_URL_SERVICE_RESTARTED?command=stoped&shard=$(hostname -s)&apikey=$NOTIFY_URL_KEY&service=$2"
|
||
|
fi
|
||
|
|