mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
20 lines
295 B
Plaintext
20 lines
295 B
Plaintext
PROGRAM=@DAEMON@
|
|
LOGDIR=/var/log/$PROGRAM
|
|
LOGFILE=$LOGDIR/$PROGRAM.log
|
|
PIDDIR=/var/run/$PROGRAM
|
|
PIDFILE=$PIDDIR/$PROGRAM.pid
|
|
|
|
|
|
$LOGFILE {
|
|
rotate 20
|
|
size 20M
|
|
compress
|
|
missingok
|
|
sharedscripts
|
|
nocreate
|
|
delaycompress
|
|
postrotate
|
|
[ -f "$PIDFILE" ] && kill -s USR1 `cat $PIDFILE`
|
|
endscript
|
|
}
|