mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-15 18:02:49 +00:00
13 lines
125 B
Bash
13 lines
125 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
while true; do
|
||
|
logrotate /etc/logrotate.conf
|
||
|
sleep 10m
|
||
|
done
|
||
|
|
||
|
# We should not exit
|
||
|
exit 1
|