psacct/psacct-logrotate.in
Jan Rybar 57962ceede post-rotate script aligned with systemd usage
Resolves: rhbz#2015020
2021-11-01 15:16:50 +01:00

16 lines
316 B
Plaintext

# 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
}