monitor timers readme
This commit is contained in:
parent
1387b5f1ae
commit
fbe62c8127
1 changed files with 11 additions and 0 deletions
11
README.md
11
README.md
|
@ -16,3 +16,14 @@ Raspberry pi as soundcard
|
|||
# install bw fork
|
||||
|
||||
pip3 install --editable git+file:///Users/mwiegand/Projekte/bundlewrap-fork#egg=bundlewrap
|
||||
|
||||
# monitor timers
|
||||
|
||||
```sh
|
||||
Triggers=$(systemctl show logrotate.timer --property=Triggers --value)
|
||||
if systemctl is-failed "$Triggers"
|
||||
do
|
||||
InvocationID=$(systemctl show "$Triggers" --property=InvocationID --value)
|
||||
journalctl INVOCATION_ID="$InvocationID" --output cat
|
||||
fi
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue