system-helpers/usr/local/bin/systemd_check

134 lines
3.4 KiB
Text
Raw Normal View History

2019-01-25 17:28:29 +00:00
#!/usr/bin/env bash
# usage
usage() {
SYSTEMD_CHECK_USAGE=$(cat <<EOF
Usage: systemd_check.sh [CONFIG_FILE (absolute path)]
Checks if specific systemd SYSTEMD_CHECK_SERVICES are running and optionally sends a mail.
2022-07-10 16:29:44 +00:00
If no CONFIG_FILE is given, HOME/.systemd_check.conf or /etc/systemd_check.conf is used. This fallback option
2019-01-25 17:28:29 +00:00
has to exist or the script will exit.
Configuration can be done in any file and any pre-defined variable can be overwritten.
The following are at least required for the script to work:
- SYSTEMD_CHECK_LIST_FILE="HOME/.systemd_check.list" // path to file to list services to check, one per line
The following are optional or have reasonable defaults:
- SYSTEMD_CHECK_MAIL_ENABLED=false // send email (SYSTEMD_CHECK_MAIL_ADDRESS has to be set to true)? false|true
- SYSTEMD_CHECK_MAIL_ADDRESS="" // mail.rc has to be configured
You can copy this script to '/usr/local/bin' and use create a custom CONFIG_FILE as user. Examples can be found in '/usr/share/doc/<scriptname>'.
EOF
)
echo "$SYSTEMD_CHECK_USAGE";
}
set -e;
# vars and defaults
SYSTEMD_CHECK_LIST_FILE="$HOME/.systemd_check.list"
2022-07-10 16:29:44 +00:00
SYSTEMD_CHECK_GLOBAL_LIST_FILE="/etc/systemd_check.list"
2019-01-25 17:28:29 +00:00
SYSTEMD_CHECK_MAIL_ENABLED=fase
SYSTEMD_CHECK_MAIL_ADDRESS=""
SYSTEMD_CHECK_HOSTNAME=$(hostname)
SYSTEMD_CHECK_USER=$(whoami)
SYSTEMD_CHECK_SERVICES=()
# check for config file
2022-07-10 16:29:44 +00:00
apply_config() {
local config=$1;
if [[ ! -f "$config" ]]; then
echo "No config file specified";
echo "";
usage;
exit 1;
fi
set -a;
source "$config";
set +a;
}
2019-01-25 18:02:33 +00:00
source_config() {
2022-07-10 16:29:44 +00:00
local config=$1;
local configFallback=$2;
local configGlobalFallback=$3;
if [[ -f "$config" ]]; then
apply_config "$config";
2022-07-10 16:33:00 +00:00
return;
2022-07-10 16:29:44 +00:00
fi
if [[ -f "$configFallback" ]]; then
apply_config "$configFallback";
2022-07-10 16:33:00 +00:00
return;
2022-07-10 16:29:44 +00:00
fi
if [[ -f "$configGlobalFallback" ]]; then
apply_config "$configGlobalFallback";
2022-07-10 16:33:00 +00:00
return;
2022-07-10 16:29:44 +00:00
fi
2019-01-25 18:02:33 +00:00
}
2022-07-10 16:29:44 +00:00
source_config "$1" "$HOME/.systemd_check.conf" "/etc/systemd_check.conf"
listFileToUse=""
if [[ -f "$SYSTEMD_CHECK_LIST_FILE" ]]; then
listFileToUse="$SYSTEMD_CHECK_LIST_FILE"
else
listFileToUse="$SYSTEMD_CHECK_GLOBAL_LIST_FILE"
fi
2019-01-25 17:28:29 +00:00
2022-07-10 16:29:44 +00:00
if [[ ! -f $listFileToUse ]]; then
echo "$listFileToUse doesn't exist. Add a file which holds one systemd service or timer per line.";
2019-01-25 18:02:33 +00:00
echo "";
usage;
2019-01-25 17:28:29 +00:00
exit 1;
fi
2022-07-10 16:29:44 +00:00
echo "Scanning $listFileToUse for services...";
2019-01-25 17:28:29 +00:00
while IFS='' read -r line || [[ -n "$line" ]]; do
SYSTEMD_CHECK_SERVICES+=("$line")
echo "-> Found $line";
2022-07-10 16:29:44 +00:00
done < "$listFileToUse"
2019-01-25 17:28:29 +00:00
# get status for a service
function checkService() {
local SERVICE=$1;
local MESSAGE="$SERVICE is not running for user $SYSTEMD_CHECK_USER";
2019-01-25 18:59:38 +00:00
local ROOT_COMMAND="systemctl is-active --quiet $SERVICE";
local USER_COMMAND="systemctl --user is-active --quiet $SERVICE";
2019-01-25 19:00:45 +00:00
local RESULT=0;
2019-01-25 17:28:29 +00:00
if [ "$(id -u)" != "0" ]; then
2019-01-25 19:17:48 +00:00
if ! $($USER_COMMAND); then
2019-01-25 19:00:45 +00:00
RESULT=1;
2019-01-25 18:52:59 +00:00
fi
2019-01-25 18:43:00 +00:00
else
2019-01-25 19:06:57 +00:00
if ! $($ROOT_COMMAND) && ! $($USER_COMMAND); then
2019-01-25 19:00:45 +00:00
RESULT=1;
2019-01-25 18:43:00 +00:00
fi
2019-01-25 17:28:29 +00:00
fi
2019-01-25 18:52:59 +00:00
if [ "$RESULT" -gt 0 ]; then
2019-01-25 17:28:29 +00:00
local SUBJECT="[systemd $SYSTEMD_CHECK_HOSTNAME for $SYSTEMD_CHECK_USER] CRITICAL $SERVICE";
echo "-> $SUBJECT: $MESSAGE";
if [ "$SYSTEMD_CHECK_MAIL_ENABLED" = true ]; then
echo $MESSAGE|mailx -Ssendwait -s "$SUBJECT" $SYSTEMD_CHECK_MAIL_ADDRESS;
fi
fi
return;
}
# execute check for defined SYSTEMD_CHECK_SERVICES
for service in "${SYSTEMD_CHECK_SERVICES[@]}"; do
echo "Checking $service...";
checkService "$service"
done