2022-02-06 12:39:52 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
timer="$1"
|
|
|
|
shift
|
|
|
|
|
|
|
|
"$@"
|
|
|
|
exitcode=$?
|
|
|
|
|
2022-09-11 09:26:57 +00:00
|
|
|
if [[ $exitcode -ne 0 ]]
|
|
|
|
then
|
|
|
|
echo "$(date -u +%s)" > "/var/lib/systemd-timer-monitored/$timer"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# to make systemd aware of the error, too.
|
|
|
|
exit $exitcode
|