From 0d3e36b6687ae601551fb8047c10a68f2d6fb565 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 3 Feb 2003 14:24:07 +0000 Subject: Move pg_service.conf.sample to /interfaces/libpq. --- src/backend/Makefile | 3 +-- src/backend/libpq/pg_service.conf.sample | 16 ---------------- src/interfaces/libpq/Makefile | 3 ++- src/interfaces/libpq/pg_service.conf.sample | 16 ++++++++++++++++ 4 files changed, 19 insertions(+), 19 deletions(-) delete mode 100644 src/backend/libpq/pg_service.conf.sample create mode 100644 src/interfaces/libpq/pg_service.conf.sample (limited to 'src') diff --git a/src/backend/Makefile b/src/backend/Makefile index ec4c179c7ab..e6499106b78 100644 --- a/src/backend/Makefile +++ b/src/backend/Makefile @@ -4,7 +4,7 @@ # # Copyright (c) 1994, Regents of the University of California # -# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.93 2003/01/26 01:19:22 momjian Exp $ +# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.94 2003/02/03 14:24:07 momjian Exp $ # #------------------------------------------------------------------------- @@ -133,7 +133,6 @@ endif endif $(MAKE) -C catalog install-data $(INSTALL_DATA) $(srcdir)/libpq/pg_hba.conf.sample $(DESTDIR)$(datadir)/pg_hba.conf.sample - $(INSTALL_DATA) $(srcdir)/libpq/pg_service.conf.sample $(DESTDIR)$(datadir)/pg_service.conf.sample $(INSTALL_DATA) $(srcdir)/libpq/pg_ident.conf.sample $(DESTDIR)$(datadir)/pg_ident.conf.sample $(INSTALL_DATA) $(srcdir)/utils/misc/postgresql.conf.sample $(DESTDIR)$(datadir)/postgresql.conf.sample diff --git a/src/backend/libpq/pg_service.conf.sample b/src/backend/libpq/pg_service.conf.sample deleted file mode 100644 index d5d486f904a..00000000000 --- a/src/backend/libpq/pg_service.conf.sample +++ /dev/null @@ -1,16 +0,0 @@ -# -# Connection configuration file -# -# A service is a set of named connection parameters. You may specify -# multiple services in this file. Each starts with a service name in -# brackets. Subsequent lines have connection configuration parameters of -# the pattern "param=value". A sample configuration for template1 is -# included in this file. If no database name is specified, it is assumed -# to match the service name. Lines beginning with '#' are comments. -# -# Copy this to your sysconf directory (typically /usr/local/pgsql/etc) and -# rename it pg_service.conf. -# -# -#[template1] -#user=postgres diff --git a/src/interfaces/libpq/Makefile b/src/interfaces/libpq/Makefile index ecc4c457c0e..c431ca44b7f 100644 --- a/src/interfaces/libpq/Makefile +++ b/src/interfaces/libpq/Makefile @@ -4,7 +4,7 @@ # # Copyright (c) 1994, Regents of the University of California # -# $Header: /cvsroot/pgsql/src/interfaces/libpq/Makefile,v 1.72 2003/01/10 10:59:08 petere Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpq/Makefile,v 1.73 2003/02/03 14:24:07 momjian Exp $ # #------------------------------------------------------------------------- @@ -65,6 +65,7 @@ install: all installdirs install-lib $(INSTALL_DATA) $(srcdir)/libpq-fe.h $(DESTDIR)$(includedir) $(INSTALL_DATA) $(srcdir)/libpq-int.h $(DESTDIR)$(includedir_internal) $(INSTALL_DATA) $(srcdir)/pqexpbuffer.h $(DESTDIR)$(includedir_internal) + $(INSTALL_DATA) $(srcdir)/pg_service.conf.sample $(DESTDIR)$(datadir)/pg_service.conf.sample installdirs: $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir) $(DESTDIR)$(includedir_internal) diff --git a/src/interfaces/libpq/pg_service.conf.sample b/src/interfaces/libpq/pg_service.conf.sample new file mode 100644 index 00000000000..d5d486f904a --- /dev/null +++ b/src/interfaces/libpq/pg_service.conf.sample @@ -0,0 +1,16 @@ +# +# Connection configuration file +# +# A service is a set of named connection parameters. You may specify +# multiple services in this file. Each starts with a service name in +# brackets. Subsequent lines have connection configuration parameters of +# the pattern "param=value". A sample configuration for template1 is +# included in this file. If no database name is specified, it is assumed +# to match the service name. Lines beginning with '#' are comments. +# +# Copy this to your sysconf directory (typically /usr/local/pgsql/etc) and +# rename it pg_service.conf. +# +# +#[template1] +#user=postgres -- cgit v1.2.3