mirror of https://gitlab.com/bashrc2/epicyon
8 lines
170 B
Plaintext
8 lines
170 B
Plaintext
|
#!/bin/bash
|
||
|
journalctl -u epicyon | grep 'could not be' > .keyfailures.txt
|
||
|
if [ ! -f .keyfailures.txt ]; then
|
||
|
echo 'No key failures'
|
||
|
else
|
||
|
cat .keyfailures.txt
|
||
|
fi
|