blob: b2b140c555c8cc3b9f2ad13fbda6028dd0c2c948 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/bash
# USAGE:
# check_systemd [UNIT ...]
FAILED=()
if ! systemctl is-system-running > /dev/null; then
echo systemd CRITICAL: System state degraded.
exit 2
fi
for unit in "$@"; do
if ! systemctl is-active "$unit" > /dev/null; then
FAILED+=("$unit")
fi
done
if [ ${#FAILED[@]} -gt 0 ]; then
echo "systemd CRITICAL: failed units: ${FAILED[@]}"
exit 2
fi
echo "systemd OK: $# units checked"
exit 0
|