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.
16 lines
316 B
16 lines
316 B
3 years ago
|
# Logrotate file for psacct RPM
|
||
|
|
||
|
/var/account/pacct {
|
||
|
compress
|
||
|
delaycompress
|
||
|
notifempty
|
||
|
daily
|
||
|
rotate 31
|
||
|
create 0600 root root
|
||
|
postrotate
|
||
|
if %{_bindir}/systemctl --quiet is-active psacct.service ; then
|
||
|
%{_bindir}/systemctl reload psacct.service
|
||
|
fi
|
||
|
endscript
|
||
|
}
|