You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-process/acct/files/acct.logrotate-r1

19 lines
304 B

# Logrotate file for acct
/var/account/pacct {
compress
delaycompress
notifempty
daily
rotate 31
create 0600 root root
missingok
postrotate
if test -d /run/systemd/system ; then
systemctl try-restart acct 1>/dev/null
else
/etc/init.d/acct --quiet --ifstarted restart
fi
endscript
}