bundlewrap/bundles/systemd-timers/files/check_systemd_timer
mwiegand 05faac8a30 wip
2022-08-18 02:17:26 +02:00

12 lines
436 B
Text

Timer=$1
Triggers=$(systemctl show ${Timer}.timer --property=Triggers --value)
if systemctl is-failed "$Triggers"
then
InvocationID=$(systemctl show "$Triggers" --property=InvocationID --value)
ExitCode=$(systemctl show "$Triggers" -p ExecStartEx --value | sed 's/^{//' | sed 's/}$//' | tr ';' '\n' | xargs -n 1 | grep '^status=' | cut -d '=' -f 2)
journalctl INVOCATION_ID="$InvocationID" --output cat
exit 1
else
exit 0
fi