Codebase list groonga / debian/8.0.0-1 debian / groonga-httpd.logrotate
debian/8.0.0-1

Tree @debian/8.0.0-1 (Download .tar.gz)

groonga-httpd.logrotate @debian/8.0.0-1raw · history · blame

/var/log/groonga/httpd/*.log {
    daily
    missingok
    rotate 30
    compress
    delaycompress
    notifempty
    create 640 groonga groonga
    sharedscripts
    postrotate
        . /etc/default/groonga-httpd
        if [ x"$ENABLE" = x"yes" ]; then
            /usr/bin/curl --silent --output /dev/null \
                "http://127.0.0.1:10041/d/log_reopen"
        fi
    endscript
}