1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-12 05:01:15 +03:00

Add runtime configuration options to control permission bits and group

owner of unix socket.
This commit is contained in:
Peter Eisentraut
2000-11-01 21:14:03 +00:00
parent 855ffa0be0
commit d1bfa6c72e
5 changed files with 135 additions and 9 deletions

View File

@@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.176 2000/10/28 18:27:55 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.177 2000/11/01 21:14:02 petere Exp $
*
* NOTES
*
@@ -588,7 +588,7 @@ PostmasterMain(int argc, char *argv[])
{
fprintf(stderr, "%s: cannot create INET stream port\n",
progname);
exit(1);
ExitPostmaster(1);
}
}
@@ -598,7 +598,7 @@ PostmasterMain(int argc, char *argv[])
{
fprintf(stderr, "%s: cannot create UNIX stream port\n",
progname);
exit(1);
ExitPostmaster(1);
}
#endif
/* set up shared memory and semaphores */