diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-10-09 23:13:22 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-10-09 23:13:22 +0000 |
commit | 337ffcddbae15a3bde25b17dbb8a0832c597003f (patch) | |
tree | 8901b4f89003a45b6a7ebf5fc1a75c6506dd3264 /src/backend/utils/misc/postgresql.conf.sample | |
parent | 0d069c53c3b01b37388473c123f0a78a09d7d3e5 (diff) | |
download | postgresql-337ffcddbae15a3bde25b17dbb8a0832c597003f.tar.gz postgresql-337ffcddbae15a3bde25b17dbb8a0832c597003f.zip |
Adjust configuration-files GUC behavior as per my recent proposal.
The vars are renamed to data_directory, config_file, hba_file, and
ident_file, and are guaranteed to be set to accurate absolute paths
during postmaster startup.
This commit does not yet do anything about hiding path values from
non-superusers.
Diffstat (limited to 'src/backend/utils/misc/postgresql.conf.sample')
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 3c689c7eacb..59004a73c05 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -30,13 +30,13 @@ #--------------------------------------------------------------------------- # The default values of these variables are driven from the -D command line -# switch or PGDATA environment variable, represented here as $PGDATA. -# pgdata = '$PGDATA' # use data in another directory -# hba_conf = '$PGDATA/pg_hba.conf' # the host-based authentication file -# ident_conf = '$PGDATA/pg_ident.conf' # the IDENT configuration file +# switch or PGDATA environment variable, represented here as ConfigDir. +# data_directory = 'ConfigDir' # use data in another directory +# hba_file = 'ConfigDir/pg_hba.conf' # the host-based authentication file +# ident_file = 'ConfigDir/pg_ident.conf' # the IDENT configuration file -# If external_pidfile is not explicitly set, no extra pid file is written. -# external_pidfile = '(none)' # write an extra pid file +# If external_pid_file is not explicitly set, no extra pid file is written. +# external_pid_file = '(none)' # write an extra pid file #--------------------------------------------------------------------------- |