We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
at least the CentOS 7 package delivers a logrotate setting with the file "/etc/logrotate.d/syslog", with the content:
/var/log/cron /var/log/maillog /var/log/messages /var/log/secure /var/log/spooler { sharedscripts postrotate /bin/kill -HUP cat /var/run/syslogd.pid 2> /dev/null 2> /dev/null || true endscript }
cat /var/run/syslogd.pid 2> /dev/null
but kill -HUP will not work, because the pidfile is '/var/run/rsyslogd.pid' not 'cat /var/run/syslogd.pid'
could you please fix this?
The text was updated successfully, but these errors were encountered:
This is a duplicate of #25, and I believe the issue was also discussed in #15.
Sorry, something went wrong.
A fix has been proposed in #30 but it doesn't appear to have been reviewed.
right, i forgot about it. closing this one
still unmerged, so this is still an issue while not a PR :)
No branches or pull requests
at least the CentOS 7 package delivers a logrotate setting with the file "/etc/logrotate.d/syslog", with the content:
/var/log/cron
/var/log/maillog
/var/log/messages
/var/log/secure
/var/log/spooler
{
sharedscripts
postrotate
/bin/kill -HUP
cat /var/run/syslogd.pid 2> /dev/null
2> /dev/null || trueendscript
}
but kill -HUP will not work, because the pidfile is '/var/run/rsyslogd.pid' not 'cat /var/run/syslogd.pid'
could you please fix this?
The text was updated successfully, but these errors were encountered: