From fbe62c8127671108ddbdb35c39ba3ee541aa5984 Mon Sep 17 00:00:00 2001 From: mwiegand Date: Tue, 9 Aug 2022 00:30:33 +0200 Subject: [PATCH] monitor timers readme --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index ee78433..39ccbf7 100644 --- a/README.md +++ b/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 +```