add bundle:systemd-timers

This commit is contained in:
Franzi 2022-02-06 13:39:52 +01:00
parent 2a3a26c333
commit 0599c4dae0
Signed by: kunsi
GPG key ID: 12E3D2136B818350
7 changed files with 145 additions and 0 deletions

View file

@ -0,0 +1,10 @@
#!/bin/sh
timer="$1"
shift
# Simple wrapper script that stores the exit code of a command into a file
"$@"
exitcode=$?
echo "$exitcode" > "/var/lib/systemd-timer-monitored/$timer"