From 82c3872f88fd71cc3c85638923ceed2f3bbaf26e Mon Sep 17 00:00:00 2001 From: clive Date: Thu, 15 Mar 2001 07:23:08 +0000 Subject: Fix problems when installing postgresql7 with pkg_add: - pkg-install used wrong uid# - chown lib dir *after* it is created - pkg-install created data dir where Makefile didn't - add pkg-deinstall and remove user & group - don't chown data dir, since we don't create it anymore - spell and documentation fixes in the rc.d script PR: ports/25817 Submitted by: MAINTAINER --- databases/postgresql7/pkg-install | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'databases/postgresql7/pkg-install') diff --git a/databases/postgresql7/pkg-install b/databases/postgresql7/pkg-install index c55c0ebb161f..edd4f36830d5 100644 --- a/databases/postgresql7/pkg-install +++ b/databases/postgresql7/pkg-install @@ -4,15 +4,13 @@ PATH=/bin:/usr/sbin -if [ -z "${DB_DIR}" ]; then - DB_DIR=${PKG_PREFIX}/pgsql/data -fi +DB_DIR=${PKG_PREFIX}/pgsql case $2 in -POST-INSTALL) +PRE-INSTALL) USER=pgsql GROUP=${USER} - UID=89 + UID=70 GID=${UID} if pw group show "${GROUP}" 2>/dev/null; then @@ -39,6 +37,6 @@ POST-INSTALL) fi fi - chown -R ${USER}.${GROUP} ${DB_DIR} ;; + esac -- cgit