mirror of
https://github.com/gutmensch/docker-dmarc-report.git
synced 2025-12-28 07:37:06 +00:00
10 lines
188 B
Bash
10 lines
188 B
Bash
#!/bin/sh
|
|
while true; do
|
|
pgrep raumsrvDaemon || {
|
|
pkill -f tail;
|
|
/opt/raumserver/raumsrvDaemon;
|
|
tail -f $(ls -t /opt/raumserver/logs/*.log | head -n 1) &
|
|
}
|
|
sleep 5
|
|
done
|