ce45888018
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/psacct#48389e9d466a667bca0f508bfde0f7f07e616317
16 lines
416 B
Plaintext
16 lines
416 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
|
|
%{_sbindir}/accton /var/account/pacct | %{_bindir}/grep -v "Turning on process accounting, file set to '/var/account/pacct'." | %{_bindir}/cat
|
|
fi
|
|
endscript
|
|
}
|