2023-08-28 17:55:24 +00:00
|
|
|
#!/bin/bash
|
2026-07-05 12:34:54 +00:00
|
|
|
dir_name="epicyon"
|
|
|
|
|
if [ ! -d /etc/${dir_name} ]; then
|
|
|
|
|
if [ -d /opt/epicyon-tor ]; then
|
|
|
|
|
dir_name="epicyon-tor"
|
|
|
|
|
elif [ -d /opt/epicyon-i2p ]; then
|
|
|
|
|
dir_name="epicyon-i2p"
|
|
|
|
|
elif [ -d /opt/epicyon-yggdrasil ]; then
|
|
|
|
|
dir_name="epicyon-yggdrasil"
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
journalctl -u ${dir_name} | grep -i ' follow accept ' > .accept_events.txt
|
2023-08-28 17:55:24 +00:00
|
|
|
if [ ! -f .accept_events.txt ]; then
|
2023-08-28 18:06:10 +00:00
|
|
|
echo 'No follow Accept events'
|
2023-08-28 17:55:24 +00:00
|
|
|
else
|
|
|
|
|
cat .accept_events.txt
|
|
|
|
|
fi
|