svn commit: r482724 - in head/databases/postgresql11-server: . files

Palle Girgensohn girgen at FreeBSD.org
Sun Oct 21 21:55:25 UTC 2018


Author: girgen
Date: Sun Oct 21 21:55:23 2018
New Revision: 482724
URL: https://svnweb.freebsd.org/changeset/ports/482724

Log:
  Minor patch to fix the default data directory used on startup.
  
  Submitted by:	Jonathan Chen
  PR:		232487

Modified:
  head/databases/postgresql11-server/Makefile
  head/databases/postgresql11-server/files/postgresql.in

Modified: head/databases/postgresql11-server/Makefile
==============================================================================
--- head/databases/postgresql11-server/Makefile	Sun Oct 21 21:23:40 2018	(r482723)
+++ head/databases/postgresql11-server/Makefile	Sun Oct 21 21:55:23 2018	(r482724)
@@ -3,6 +3,7 @@
 
 PORTNAME?=	postgresql
 DISTVERSION?=	11.0
+PORTREVISION?=	1
 CATEGORIES?=	databases
 MASTER_SITES=	PGSQL/source/v${DISTVERSION}
 PKGNAMESUFFIX?= ${PORTVERSION:R}${COMPONENT}

Modified: head/databases/postgresql11-server/files/postgresql.in
==============================================================================
--- head/databases/postgresql11-server/files/postgresql.in	Sun Oct 21 21:23:40 2018	(r482723)
+++ head/databases/postgresql11-server/files/postgresql.in	Sun Oct 21 21:55:23 2018	(r482724)
@@ -10,7 +10,7 @@
 #
 #  postgresql_enable="YES"
 #  # optional
-#  postgresql_data="/var/db/%%PG_USER%%/data10"
+#  postgresql_data="/var/db/%%PG_USER%%/data11"
 #  postgresql_flags="-w -s -m fast"
 #  postgresql_initdb_flags="--encoding=utf-8 --lc-collate=C"
 #  postgresql_class="default"
@@ -34,7 +34,7 @@ load_rc_config postgresql
 postgresql_enable=${postgresql_enable:-"NO"}
 postgresql_flags=${postgresql_flags:-"-w -s -m fast"}
 postgresql_user=${postgresql_user:-"%%PG_USER%%"}
-eval postgresql_data=${postgresql_data:-"~${postgresql_user}/data10"}
+eval postgresql_data=${postgresql_data:-"~${postgresql_user}/data11"}
 postgresql_class=${postgresql_class:-"default"}
 postgresql_initdb_flags=${postgresql_initdb_flags:-"--encoding=utf-8 --lc-collate=C"}
 


More information about the svn-ports-all mailing list