From 337ffcddbae15a3bde25b17dbb8a0832c597003f Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 9 Oct 2004 23:13:22 +0000 Subject: 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. --- src/backend/utils/misc/postgresql.conf.sample | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/backend/utils/misc/postgresql.conf.sample') 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 #--------------------------------------------------------------------------- -- cgit v1.2.3