Fedora Account System
Red Hat Associate
Red Hat Customer
# rpm -q amavisd-milter amavisd-milter-1.7.2-1.el8.x86_64 Every time amavisd-milter starts, systemd complains about the PID file. Jun 9 11:49:24 x systemd[1]: amavisd-milter.service: Can't open PID file /run/amavisd/amavisd-milter.pid (yet?) after start: No such file or directory An easy workaround is "ExecStartPost=/bin/sleep 1". # cat /etc/systemd/system/amavisd-milter.service.d/amavisd.conf [Unit] After=amavisd.service [Service] ExecStartPost=/bin/sleep 1
I am sorry, but "/bin/sleep 1" is not an option. Does /run/amavisd/amavisd-milter.pid exist in the end - and this is just a cosmetic issue? Or is /run/amavisd/amavisd-milter.pid really missing (for longer than the race-condition during the daemon startup)?
/run/amavisd/amavisd-milter.pid exists and everything works. I just saw the "Can't open PID file" error in logs and decided to report.