16 lines
314 B
Plaintext
16 lines
314 B
Plaintext
|
# Logrotate file for psacct RPM
|
||
|
|
||
|
%{accounting_logdir}/pacct {
|
||
|
compress
|
||
|
delaycompress
|
||
|
notifempty
|
||
|
daily
|
||
|
rotate 31
|
||
|
create 0600 root root
|
||
|
postrotate
|
||
|
if /etc/init.d/psacct status >/dev/null 2>&1; then
|
||
|
%{_sbindir}/accton %{accounting_logdir}/pacct
|
||
|
fi
|
||
|
endscript
|
||
|
}
|