diff options
author | Palle Girgensohn <girgen@FreeBSD.org> | 2005-03-19 03:51:45 +0000 |
---|---|---|
committer | Palle Girgensohn <girgen@FreeBSD.org> | 2005-03-19 03:51:45 +0000 |
commit | 75063741266f3fd43477a6ac526b36c2899c0108 (patch) | |
tree | bbf005f0ba4c3ce6942d024cc979f482ee22311a /databases/postgresql91-server | |
parent | Add Xdmx port of X.Org distribution: (diff) |
Modify 8.0's startup script to simulate a full login (su -l) [1]. Also
add support to select login class for running postgresql [2].
The new startup script, using rc.subr, is now installed for all
versions of postgresql. Bump portrevisions, since startup script is
modified.
PR: 78630 [1]
Submitted by: Vivek Khera [1]
Submitted by: Brian B. [2]
Approved by: seanc (implicit)
Notes
Notes:
svn path=/head/; revision=131605
Diffstat (limited to 'databases/postgresql91-server')
-rw-r--r-- | databases/postgresql91-server/Makefile | 2 | ||||
-rw-r--r-- | databases/postgresql91-server/files/pgsql.sh.tmpl | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/databases/postgresql91-server/Makefile b/databases/postgresql91-server/Makefile index b5865e71c52f..4825ec4d2984 100644 --- a/databases/postgresql91-server/Makefile +++ b/databases/postgresql91-server/Makefile @@ -8,7 +8,7 @@ PORTNAME?= postgresql PKGNAMESUFFIX?= -server PORTVERSION?= 8.0.1 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES?= databases MASTER_SITES= ${MASTER_SITE_PGSQL} MASTER_SITE_SUBDIR= source/v${PORTVERSION} diff --git a/databases/postgresql91-server/files/pgsql.sh.tmpl b/databases/postgresql91-server/files/pgsql.sh.tmpl index 2f543cdc4afb..8d975d54303c 100644 --- a/databases/postgresql91-server/files/pgsql.sh.tmpl +++ b/databases/postgresql91-server/files/pgsql.sh.tmpl @@ -30,6 +30,7 @@ postgresql_enable=${postgresql_enable:-"NO"} postgresql_flags=${postgresql_flags:-"-w -s -m fast"} postgresql_user=pgsql eval postgresql_data=${postgresql_data:-"~${postgresql_user}/data"} +postgresql_class=${postgresql_class:-"default"} name=postgresql rcvar=`set_rcvar` @@ -47,12 +48,12 @@ initdb_cmd="postgresql_initdb" postgresql_command() { - su -m ${postgresql_user} -c "exec ${command} ${command_args}" + su -l ${postgresql_user} -c "exec ${command} ${command_args}" } postgresql_initdb() { - su -l ${postgresql_user} -c "exec ${prefix}/bin/initdb -D ${postgresql_data}" + su -l -c ${postgresql_class} ${postgresql_user} -c "exec ${prefix}/bin/initdb -D ${postgresql_data}" } run_rc_command "$1" |