CentOS to RHEL Protector Upgrade
Migrate their protectors form CentOS to RHEL
Suggested them to just edit the /etc/logrotate.d/maillog
and change the value from
postrotate
/bin/kill -HUP `cat /var/run/syslogd.pid 2> /dev/null` 2> /dev/null || true
endscript
to
postrotate
/bin/kill -HUP `cat /var/run/rsyslogd.pid 2> /dev/null` 2> /dev/null || true
endscript
just change the syslogd.pid 2 to rsyslogd.pid2