1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-08 06:48:28 +00:00

Fix typo in rc.d script

The data directory was badly named data11 instead of the more correct data12.

PR:		239798
Submitted by:	Dmitry Wagin
This commit is contained in:
Palle Girgensohn 2019-09-17 08:49:01 +00:00
parent 7aa2e3cf3f
commit 9bf312dfc1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=512199
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ PORTNAME?= postgresql
DISTVERSION?= 12beta4
# PORTREVISION must be ?= otherwise, all slave ports get this PORTREVISION and
# not their own. Probably best to keep it at ?=0 when reset here too.
PORTREVISION?= 0
PORTREVISION?= 1
CATEGORIES?= databases
MASTER_SITES= PGSQL/source/v${DISTVERSION}
PKGNAMESUFFIX?= ${PORTVERSION:R}${COMPONENT}

View File

@ -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}/data11"}
eval postgresql_data=${postgresql_data:-"~${postgresql_user}/data12"}
postgresql_class=${postgresql_class:-"default"}
postgresql_initdb_flags=${postgresql_initdb_flags:-"--encoding=utf-8 --lc-collate=C"}