Hi,
Every time I start/restart httpd (installed from IBM repo, httpd-2.4.46-1.ppc) the /var/run directory permissions got changed, that makes it impossible for processes that write PID-files to subdirectories with non-root permissions to start. I made small investigation and found that it is caused by the line in /etc/rc.d/init.d/httpd script:
$MKDIR -p /var/runI changed the script this way:
if [ ! -d "/var/run" ]then$MKDIR -p /var/runfiNow the script does not re-write directory permissions. Is it possible to change the script in RPM package like that or maybe some other way, in order to make it check the /var/run directory permissions/existence and does not change them unnecessarily?
------------------------------
Sincerely yours,
Pavlo Greenberg
------------------------------