Make external_pid_file world readable

This commit is contained in:
Peter Eisentraut 2011-06-19 00:34:32 +03:00
parent 110c88d35c
commit 223d14a984
1 changed files with 5 additions and 0 deletions

View File

@ -1024,6 +1024,11 @@ PostmasterMain(int argc, char *argv[])
fprintf(fpidfile, "%d\n", MyProcPid);
fclose(fpidfile);
/* Should we remove the pid file on postmaster exit? */
/* Make PID file world readable */
if (chmod(external_pid_file, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH) != 0)
write_stderr("%s: could not change permissions of external PID file \"%s\": %s\n",
progname, external_pid_file, strerror(errno));
}
else
write_stderr("%s: could not write external PID file \"%s\": %s\n",