Accept events

main
Bob Mottram 2023-08-28 18:55:24 +01:00
parent 3b9be7e630
commit 0f3ec9eace
1 changed files with 7 additions and 0 deletions

7
scripts/accept 100755
View File

@ -0,0 +1,7 @@
#!/bin/bash
journalctl -u epicyon | grep -i ' Accept ' > .accept_events.txt
if [ ! -f .accept_events.txt ]; then
echo 'No Accept events'
else
cat .accept_events.txt
fi