- Add profile support for PostgreSQL servers
- re-assign LOCALBASE to PREFIX - add PG_GROUP to SUB_PLIST for packaging fix - fix permissions for package installations PR: ports/162776 Submitted by: jgh, Phil Phillips < pphillips at experts-exchange.com > Reviewed by: rene (mentor) Approved by: crees (maintainer, mentor)
This commit is contained in:
parent
747dd62de6
commit
8575a6c942
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=289587
18 changed files with 354 additions and 42 deletions
|
@ -7,7 +7,7 @@
|
|||
|
||||
PORTNAME?= postgresql
|
||||
DISTVERSION?= 8.2.22
|
||||
PORTREVISION?= 4
|
||||
PORTREVISION?= 5
|
||||
CATEGORIES?= databases
|
||||
MASTER_SITES= ${MASTER_SITE_PGSQL}
|
||||
MASTER_SITE_SUBDIR= source/v${DISTVERSION}
|
||||
|
@ -231,7 +231,8 @@ MAN7= abort.7 alter_aggregate.7 alter_conversion.7 alter_database.7 \
|
|||
savepoint.7 values.7
|
||||
.endif
|
||||
|
||||
PLIST_SUB+= PG_USER=$(PG_USER)
|
||||
PLIST_SUB+= PG_USER=$(PG_USER) \
|
||||
PG_GROUP=$(PG_GROUP)
|
||||
SUB_LIST+= PG_GROUP=$(PG_GROUP) \
|
||||
PG_USER=$(PG_USER) \
|
||||
PG_UID=$(PG_UID)
|
||||
|
@ -286,7 +287,7 @@ do-install:
|
|||
${MKDIR} ${PREFIX}/etc/periodic/daily ;\
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/502.pgsql \
|
||||
${PREFIX}/etc/periodic/daily
|
||||
${MKDIR} ${LOCALBASE}/${PG_USER} && ${CHOWN} ${PG_USER}:${PG_GROUP} ${LOCALBASE}/${PG_USER}
|
||||
${MKDIR} ${PREFIX}/${PG_USER} && ${CHOWN} ${PG_USER}:${PG_GROUP} ${PREFIX}/${PG_USER}
|
||||
. endif # SERVER_ONLY
|
||||
. if defined(CLIENT_ONLY)
|
||||
@ cd ${WRKSRC}/src && ${SETENV} ${MAKE_ENV} ${GMAKE} install-local
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
# postgresql_flags="-w -s -m fast"
|
||||
# postgresql_initdb_flags="--encoding=utf-8 --lc-collate=C"
|
||||
# postgresql_class="default"
|
||||
# postgresql_profiles=""
|
||||
#
|
||||
# See %%PREFIX%%/share/doc/postgresql/README-server for more info
|
||||
#
|
||||
|
@ -39,7 +40,6 @@ postgresql_initdb_flags=${postgresql_initdb_flags:-"--encoding=utf-8 --lc-collat
|
|||
|
||||
name=postgresql
|
||||
rcvar=postgresql_enable
|
||||
command_args="-D ${postgresql_data} ${postgresql_flags}"
|
||||
extra_commands="reload initdb"
|
||||
|
||||
start_cmd="postgresql_command start"
|
||||
|
@ -50,11 +50,62 @@ status_cmd="postgresql_command status"
|
|||
|
||||
initdb_cmd="postgresql_initdb"
|
||||
|
||||
if [ -n "$2" ]; then
|
||||
profile="$2"
|
||||
if [ "x${postgresql_profiles}" != "x" ]; then
|
||||
eval postgresql_data="\${postgresql_${profile}_data:-}"
|
||||
if [ "x${postgresql_data}" = "x" ]; then
|
||||
echo "You must define a data directory (postgresql_${profile}_data)"
|
||||
exit 1
|
||||
fi
|
||||
eval postgresql_enable="\${postgresql_${profile}_enable:-${postgresql_enable}}
|
||||
eval postgresql_data="\${postgresql_${profile}_data:-${postgresql_data}}
|
||||
eval postgresql_flags="\${postgresql_${profile}_flags:-${postgresql_flags}}"
|
||||
eval postgresql_initdb_flags="\${postgresql_${profile}_initdb_flags:-${postgresql_initdb_flags}}"
|
||||
fi
|
||||
else
|
||||
if [ "x${postgresql_profiles}" != "x" -a "x$1" != "x" ]; then
|
||||
for profile in ${postgresql_profiles}; do
|
||||
eval _enable="\${postgresql_${profile}_enable}"
|
||||
case "x${_enable:-${postgresql_enable}}" in
|
||||
x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee])
|
||||
continue
|
||||
;;
|
||||
x[Yy][Ee][Ss])
|
||||
;;
|
||||
*)
|
||||
if test -z "$_enable"; then
|
||||
_var=postgresql_enable
|
||||
else
|
||||
_var=postgresql_"${profile}"_enable
|
||||
fi
|
||||
echo "Bad value" \
|
||||
"'${_enable:-${postgresql_enable}}'" \
|
||||
"for ${_var}. " \
|
||||
"Profile ${profile} skipped."
|
||||
continue
|
||||
;;
|
||||
esac
|
||||
echo "===> postgresql profile: ${profile}"
|
||||
%%PREFIX%%/etc/rc.d/postgresql $1 ${profile}
|
||||
retcode="$?"
|
||||
if [ "0${retcode}" -ne 0 ]; then
|
||||
failed="${profile} (${retcode}) ${failed:-}"
|
||||
else
|
||||
success="${profile} ${success:-}"
|
||||
fi
|
||||
done
|
||||
exit 0
|
||||
fi
|
||||
fi
|
||||
|
||||
command_args="-D ${postgresql_data} ${postgresql_flags}"
|
||||
|
||||
postgresql_command()
|
||||
{
|
||||
su -l ${postgresql_user} -c "exec ${command} ${command_args} ${rc_arg}"
|
||||
}
|
||||
|
||||
|
||||
postgresql_initdb()
|
||||
{
|
||||
su -l -c ${postgresql_class} ${postgresql_user} -c "exec %%PREFIX%%/bin/initdb ${postgresql_initdb_flags} -D ${postgresql_data}"
|
||||
|
|
|
@ -723,8 +723,8 @@ share/postgresql/timezonesets/Europe.txt
|
|||
share/postgresql/timezonesets/India
|
||||
share/postgresql/timezonesets/Indian.txt
|
||||
share/postgresql/timezonesets/Pacific.txt
|
||||
@exec /bin/mkdir -p %%LOCALBASE%%/%%PG_USER%% || /usr/bin/true
|
||||
@exec /usr/bin/chown %%PG_USER%%:%%PG_GROUP%% %%LOCALBASE%%/%%PG_USER%% || /usr/bin/true
|
||||
@exec /bin/mkdir -p %%PREFIX%%/%%PG_USER%% || /usr/bin/true
|
||||
@exec /usr/sbin/chown %%PG_USER%%:%%PG_GROUP%% %%PREFIX%%/%%PG_USER%% || /usr/bin/true
|
||||
@dirrm share/postgresql/timezone/Africa
|
||||
@dirrm share/postgresql/timezone/America/Argentina
|
||||
@dirrm share/postgresql/timezone/America/Indiana
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
PORTNAME?= postgresql
|
||||
DISTVERSION?= 8.3.16
|
||||
PORTREVISION?= 4
|
||||
PORTREVISION?= 5
|
||||
CATEGORIES?= databases
|
||||
MASTER_SITES= ${MASTER_SITE_PGSQL}
|
||||
MASTER_SITE_SUBDIR= source/v${DISTVERSION}
|
||||
|
@ -257,7 +257,8 @@ MAN7= abort.7 alter_aggregate.7 alter_conversion.7 alter_database.7 \
|
|||
savepoint.7 values.7
|
||||
.endif
|
||||
|
||||
PLIST_SUB+= PG_USER=$(PG_USER)
|
||||
PLIST_SUB+= PG_USER=$(PG_USER) \
|
||||
PG_GROUP=$(PG_GROUP)
|
||||
SUB_LIST+= PG_GROUP=$(PG_GROUP) \
|
||||
PG_USER=$(PG_USER) \
|
||||
PG_UID=$(PG_UID)
|
||||
|
@ -317,7 +318,7 @@ do-install:
|
|||
${MKDIR} ${PREFIX}/etc/periodic/daily ;\
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/502.pgsql \
|
||||
${PREFIX}/etc/periodic/daily
|
||||
${MKDIR} ${LOCALBASE}/${PG_USER} && ${CHOWN} ${PG_USER}:${PG_GROUP} ${LOCALBASE}/${PG_USER}
|
||||
${MKDIR} ${PREFIX}/${PG_USER} && ${CHOWN} ${PG_USER}:${PG_GROUP} ${PREFIX}/${PG_USER}
|
||||
. endif # SERVER_ONLY
|
||||
. if defined(CLIENT_ONLY)
|
||||
@ cd ${WRKSRC}/src && ${SETENV} ${MAKE_ENV} ${GMAKE} install-local
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
# postgresql_flags="-w -s -m fast"
|
||||
# postgresql_initdb_flags="--encoding=utf-8 --lc-collate=C"
|
||||
# postgresql_class="default"
|
||||
# postgresql_profiles=""
|
||||
#
|
||||
# See %%PREFIX%%/share/doc/postgresql/README-server for more info
|
||||
#
|
||||
|
@ -39,7 +40,6 @@ postgresql_initdb_flags=${postgresql_initdb_flags:-"--encoding=utf-8 --lc-collat
|
|||
|
||||
name=postgresql
|
||||
rcvar=postgresql_enable
|
||||
command_args="-D ${postgresql_data} ${postgresql_flags}"
|
||||
extra_commands="reload initdb"
|
||||
|
||||
start_cmd="postgresql_command start"
|
||||
|
@ -50,11 +50,62 @@ status_cmd="postgresql_command status"
|
|||
|
||||
initdb_cmd="postgresql_initdb"
|
||||
|
||||
if [ -n "$2" ]; then
|
||||
profile="$2"
|
||||
if [ "x${postgresql_profiles}" != "x" ]; then
|
||||
eval postgresql_data="\${postgresql_${profile}_data:-}"
|
||||
if [ "x${postgresql_data}" = "x" ]; then
|
||||
echo "You must define a data directory (postgresql_${profile}_data)"
|
||||
exit 1
|
||||
fi
|
||||
eval postgresql_enable="\${postgresql_${profile}_enable:-${postgresql_enable}}
|
||||
eval postgresql_data="\${postgresql_${profile}_data:-${postgresql_data}}
|
||||
eval postgresql_flags="\${postgresql_${profile}_flags:-${postgresql_flags}}"
|
||||
eval postgresql_initdb_flags="\${postgresql_${profile}_initdb_flags:-${postgresql_initdb_flags}}"
|
||||
fi
|
||||
else
|
||||
if [ "x${postgresql_profiles}" != "x" -a "x$1" != "x" ]; then
|
||||
for profile in ${postgresql_profiles}; do
|
||||
eval _enable="\${postgresql_${profile}_enable}"
|
||||
case "x${_enable:-${postgresql_enable}}" in
|
||||
x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee])
|
||||
continue
|
||||
;;
|
||||
x[Yy][Ee][Ss])
|
||||
;;
|
||||
*)
|
||||
if test -z "$_enable"; then
|
||||
_var=postgresql_enable
|
||||
else
|
||||
_var=postgresql_"${profile}"_enable
|
||||
fi
|
||||
echo "Bad value" \
|
||||
"'${_enable:-${postgresql_enable}}'" \
|
||||
"for ${_var}. " \
|
||||
"Profile ${profile} skipped."
|
||||
continue
|
||||
;;
|
||||
esac
|
||||
echo "===> postgresql profile: ${profile}"
|
||||
%%PREFIX%%/etc/rc.d/postgresql $1 ${profile}
|
||||
retcode="$?"
|
||||
if [ "0${retcode}" -ne 0 ]; then
|
||||
failed="${profile} (${retcode}) ${failed:-}"
|
||||
else
|
||||
success="${profile} ${success:-}"
|
||||
fi
|
||||
done
|
||||
exit 0
|
||||
fi
|
||||
fi
|
||||
|
||||
command_args="-D ${postgresql_data} ${postgresql_flags}"
|
||||
|
||||
postgresql_command()
|
||||
{
|
||||
su -l ${postgresql_user} -c "exec ${command} ${command_args} ${rc_arg}"
|
||||
}
|
||||
|
||||
|
||||
postgresql_initdb()
|
||||
{
|
||||
su -l -c ${postgresql_class} ${postgresql_user} -c "exec %%PREFIX%%/bin/initdb ${postgresql_initdb_flags} -D ${postgresql_data}"
|
||||
|
|
|
@ -776,8 +776,8 @@ share/postgresql/tsearch_data/ispell_sample.affix
|
|||
share/postgresql/tsearch_data/ispell_sample.dict
|
||||
share/postgresql/tsearch_data/synonym_sample.syn
|
||||
share/postgresql/tsearch_data/thesaurus_sample.ths
|
||||
@exec /bin/mkdir -p %%LOCALBASE%%/%%PG_USER%% || /usr/bin/true
|
||||
@exec /usr/bin/chown %%PG_USER%%:%%PG_GROUP%% %%LOCALBASE%%/%%PG_USER%% || /usr/bin/true
|
||||
@exec /bin/mkdir -p %%PREFIX%%/%%PG_USER%% || /usr/bin/true
|
||||
@exec /usr/sbin/chown %%PG_USER%%:%%PG_GROUP%% %%PREFIX%%/%%PG_USER%% || /usr/bin/true
|
||||
@dirrmtry share/postgresql/tsearch_data
|
||||
@dirrmtry share/postgresql
|
||||
@dirrmtry etc/periodic/daily
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
PORTNAME?= postgresql
|
||||
DISTVERSION?= 8.4.10
|
||||
PORTREVISION?= 2
|
||||
PORTREVISION?= 3
|
||||
CATEGORIES?= databases
|
||||
MASTER_SITES= ${MASTER_SITE_PGSQL}
|
||||
MASTER_SITE_SUBDIR= source/v${DISTVERSION}
|
||||
|
@ -280,7 +280,8 @@ MAN7= abort.7 alter_aggregate.7 alter_conversion.7 alter_database.7 \
|
|||
savepoint.7 values.7 with.7
|
||||
.endif
|
||||
|
||||
PLIST_SUB+= PG_USER=$(PG_USER)
|
||||
PLIST_SUB+= PG_USER=$(PG_USER) \
|
||||
PG_GROUP=$(PG_GROUP)
|
||||
SUB_LIST+= PG_GROUP=$(PG_GROUP) \
|
||||
PG_USER=$(PG_USER) \
|
||||
PG_UID=$(PG_UID)
|
||||
|
@ -339,7 +340,7 @@ do-install:
|
|||
${MKDIR} ${PREFIX}/etc/periodic/daily ;\
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/502.pgsql \
|
||||
${PREFIX}/etc/periodic/daily
|
||||
${MKDIR} ${LOCALBASE}/${PG_USER} && ${CHOWN} ${PG_USER}:${PG_GROUP} ${LOCALBASE}/${PG_USER}
|
||||
${MKDIR} ${PREFIX}/${PG_USER} && ${CHOWN} ${PG_USER}:${PG_GROUP} ${PREFIX}/${PG_USER}
|
||||
. endif # SERVER_ONLY
|
||||
. if defined(CLIENT_ONLY)
|
||||
@ cd ${WRKSRC}/src && ${SETENV} ${MAKE_ENV} ${GMAKE} install-local
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
# postgresql_flags="-w -s -m fast"
|
||||
# postgresql_initdb_flags="--encoding=utf-8 --lc-collate=C"
|
||||
# postgresql_class="default"
|
||||
# postgresql_profiles=""
|
||||
#
|
||||
# See %%PREFIX%%/share/doc/postgresql/README-server for more info
|
||||
#
|
||||
|
@ -39,7 +40,6 @@ postgresql_initdb_flags=${postgresql_initdb_flags:-"--encoding=utf-8 --lc-collat
|
|||
|
||||
name=postgresql
|
||||
rcvar=postgresql_enable
|
||||
command_args="-D ${postgresql_data} ${postgresql_flags}"
|
||||
extra_commands="reload initdb"
|
||||
|
||||
start_cmd="postgresql_command start"
|
||||
|
@ -50,11 +50,62 @@ status_cmd="postgresql_command status"
|
|||
|
||||
initdb_cmd="postgresql_initdb"
|
||||
|
||||
if [ -n "$2" ]; then
|
||||
profile="$2"
|
||||
if [ "x${postgresql_profiles}" != "x" ]; then
|
||||
eval postgresql_data="\${postgresql_${profile}_data:-}"
|
||||
if [ "x${postgresql_data}" = "x" ]; then
|
||||
echo "You must define a data directory (postgresql_${profile}_data)"
|
||||
exit 1
|
||||
fi
|
||||
eval postgresql_enable="\${postgresql_${profile}_enable:-${postgresql_enable}}
|
||||
eval postgresql_data="\${postgresql_${profile}_data:-${postgresql_data}}
|
||||
eval postgresql_flags="\${postgresql_${profile}_flags:-${postgresql_flags}}"
|
||||
eval postgresql_initdb_flags="\${postgresql_${profile}_initdb_flags:-${postgresql_initdb_flags}}"
|
||||
fi
|
||||
else
|
||||
if [ "x${postgresql_profiles}" != "x" -a "x$1" != "x" ]; then
|
||||
for profile in ${postgresql_profiles}; do
|
||||
eval _enable="\${postgresql_${profile}_enable}"
|
||||
case "x${_enable:-${postgresql_enable}}" in
|
||||
x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee])
|
||||
continue
|
||||
;;
|
||||
x[Yy][Ee][Ss])
|
||||
;;
|
||||
*)
|
||||
if test -z "$_enable"; then
|
||||
_var=postgresql_enable
|
||||
else
|
||||
_var=postgresql_"${profile}"_enable
|
||||
fi
|
||||
echo "Bad value" \
|
||||
"'${_enable:-${postgresql_enable}}'" \
|
||||
"for ${_var}. " \
|
||||
"Profile ${profile} skipped."
|
||||
continue
|
||||
;;
|
||||
esac
|
||||
echo "===> postgresql profile: ${profile}"
|
||||
%%PREFIX%%/etc/rc.d/postgresql $1 ${profile}
|
||||
retcode="$?"
|
||||
if [ "0${retcode}" -ne 0 ]; then
|
||||
failed="${profile} (${retcode}) ${failed:-}"
|
||||
else
|
||||
success="${profile} ${success:-}"
|
||||
fi
|
||||
done
|
||||
exit 0
|
||||
fi
|
||||
fi
|
||||
|
||||
command_args="-D ${postgresql_data} ${postgresql_flags}"
|
||||
|
||||
postgresql_command()
|
||||
{
|
||||
su -l ${postgresql_user} -c "exec ${command} ${command_args} ${rc_arg}"
|
||||
}
|
||||
|
||||
|
||||
postgresql_initdb()
|
||||
{
|
||||
su -l -c ${postgresql_class} ${postgresql_user} -c "exec %%PREFIX%%/bin/initdb ${postgresql_initdb_flags} -D ${postgresql_data}"
|
||||
|
|
|
@ -762,8 +762,8 @@ share/postgresql/tsearch_data/ispell_sample.affix
|
|||
share/postgresql/tsearch_data/ispell_sample.dict
|
||||
share/postgresql/tsearch_data/synonym_sample.syn
|
||||
share/postgresql/tsearch_data/thesaurus_sample.ths
|
||||
@exec /bin/mkdir -p %%LOCALBASE%%/%%PG_USER%% || /usr/bin/true
|
||||
@exec /usr/bin/chown %%PG_USER%%:%%PG_GROUP%% %%LOCALBASE%%/%%PG_USER%% || /usr/bin/true
|
||||
@exec /bin/mkdir -p %%PREFIX%%/%%PG_USER%% || /usr/bin/true
|
||||
@exec /usr/sbin/chown %%PG_USER%%:%%PG_GROUP%% %%PREFIX%%/%%PG_USER%% || /usr/bin/true
|
||||
@dirrmtry share/postgresql/tsearch_data
|
||||
@dirrmtry share/postgresql
|
||||
@dirrmtry etc/periodic/daily
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
PORTNAME?= postgresql
|
||||
DISTVERSION?= 9.0.6
|
||||
PORTREVISION?= 2
|
||||
PORTREVISION?= 3
|
||||
CATEGORIES?= databases
|
||||
MASTER_SITES= ${MASTER_SITE_PGSQL}
|
||||
MASTER_SITE_SUBDIR= source/v${DISTVERSION}
|
||||
|
@ -308,7 +308,8 @@ MAN7= ABORT.7 ALTER_AGGREGATE.7 ALTER_CONVERSION.7 ALTER_DATABASE.7 \
|
|||
SAVEPOINT.7 VALUES.7 WITH.7
|
||||
.endif
|
||||
|
||||
PLIST_SUB+= PG_USER=$(PG_USER)
|
||||
PLIST_SUB+= PG_USER=$(PG_USER) \
|
||||
PG_GROUP=$(PG_GROUP)
|
||||
SUB_LIST+= PG_GROUP=$(PG_GROUP) \
|
||||
PG_USER=$(PG_USER) \
|
||||
PG_UID=$(PG_UID)
|
||||
|
@ -368,7 +369,7 @@ do-install:
|
|||
${MKDIR} ${PREFIX}/etc/periodic/daily ;\
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/502.pgsql \
|
||||
${PREFIX}/etc/periodic/daily
|
||||
${MKDIR} ${LOCALBASE}/${PG_USER} && ${CHOWN} ${PG_USER}:${PG_GROUP} ${LOCALBASE}/${PG_USER}
|
||||
${MKDIR} ${PREFIX}/${PG_USER} && ${CHOWN} ${PG_USER}:${PG_GROUP} ${PREFIX}/${PG_USER}
|
||||
. endif # SERVER_ONLY
|
||||
. if defined(CLIENT_ONLY)
|
||||
@ cd ${WRKSRC}/src && ${SETENV} ${MAKE_ENV} ${GMAKE} install-local
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
# postgresql_flags="-w -s -m fast"
|
||||
# postgresql_initdb_flags="--encoding=utf-8 --lc-collate=C"
|
||||
# postgresql_class="default"
|
||||
# postgresql_profiles=""
|
||||
#
|
||||
# See %%PREFIX%%/share/doc/postgresql/README-server for more info
|
||||
#
|
||||
|
@ -39,7 +40,6 @@ postgresql_initdb_flags=${postgresql_initdb_flags:-"--encoding=utf-8 --lc-collat
|
|||
|
||||
name=postgresql
|
||||
rcvar=postgresql_enable
|
||||
command_args="-D ${postgresql_data} ${postgresql_flags}"
|
||||
extra_commands="reload initdb"
|
||||
|
||||
start_cmd="postgresql_command start"
|
||||
|
@ -50,11 +50,62 @@ status_cmd="postgresql_command status"
|
|||
|
||||
initdb_cmd="postgresql_initdb"
|
||||
|
||||
if [ -n "$2" ]; then
|
||||
profile="$2"
|
||||
if [ "x${postgresql_profiles}" != "x" ]; then
|
||||
eval postgresql_data="\${postgresql_${profile}_data:-}"
|
||||
if [ "x${postgresql_data}" = "x" ]; then
|
||||
echo "You must define a data directory (postgresql_${profile}_data)"
|
||||
exit 1
|
||||
fi
|
||||
eval postgresql_enable="\${postgresql_${profile}_enable:-${postgresql_enable}}
|
||||
eval postgresql_data="\${postgresql_${profile}_data:-${postgresql_data}}
|
||||
eval postgresql_flags="\${postgresql_${profile}_flags:-${postgresql_flags}}"
|
||||
eval postgresql_initdb_flags="\${postgresql_${profile}_initdb_flags:-${postgresql_initdb_flags}}"
|
||||
fi
|
||||
else
|
||||
if [ "x${postgresql_profiles}" != "x" -a "x$1" != "x" ]; then
|
||||
for profile in ${postgresql_profiles}; do
|
||||
eval _enable="\${postgresql_${profile}_enable}"
|
||||
case "x${_enable:-${postgresql_enable}}" in
|
||||
x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee])
|
||||
continue
|
||||
;;
|
||||
x[Yy][Ee][Ss])
|
||||
;;
|
||||
*)
|
||||
if test -z "$_enable"; then
|
||||
_var=postgresql_enable
|
||||
else
|
||||
_var=postgresql_"${profile}"_enable
|
||||
fi
|
||||
echo "Bad value" \
|
||||
"'${_enable:-${postgresql_enable}}'" \
|
||||
"for ${_var}. " \
|
||||
"Profile ${profile} skipped."
|
||||
continue
|
||||
;;
|
||||
esac
|
||||
echo "===> postgresql profile: ${profile}"
|
||||
%%PREFIX%%/etc/rc.d/postgresql $1 ${profile}
|
||||
retcode="$?"
|
||||
if [ "0${retcode}" -ne 0 ]; then
|
||||
failed="${profile} (${retcode}) ${failed:-}"
|
||||
else
|
||||
success="${profile} ${success:-}"
|
||||
fi
|
||||
done
|
||||
exit 0
|
||||
fi
|
||||
fi
|
||||
|
||||
command_args="-D ${postgresql_data} ${postgresql_flags}"
|
||||
|
||||
postgresql_command()
|
||||
{
|
||||
su -l ${postgresql_user} -c "exec ${command} ${command_args} ${rc_arg}"
|
||||
}
|
||||
|
||||
|
||||
postgresql_initdb()
|
||||
{
|
||||
su -l -c ${postgresql_class} ${postgresql_user} -c "exec %%PREFIX%%/bin/initdb ${postgresql_initdb_flags} -D ${postgresql_data}"
|
||||
|
|
|
@ -771,8 +771,8 @@ share/postgresql/tsearch_data/ispell_sample.affix
|
|||
share/postgresql/tsearch_data/ispell_sample.dict
|
||||
share/postgresql/tsearch_data/synonym_sample.syn
|
||||
share/postgresql/tsearch_data/thesaurus_sample.ths
|
||||
@exec /bin/mkdir -p %%LOCALBASE%%/%%PG_USER%% || /usr/bin/true
|
||||
@exec /usr/bin/chown %%PG_USER%%:%%PG_GROUP%% %%LOCALBASE%%/%%PG_USER%% || /usr/bin/true
|
||||
@exec /bin/mkdir -p %%PREFIX%%/%%PG_USER%% || /usr/bin/true
|
||||
@exec /usr/sbin/chown %%PG_USER%%:%%PG_GROUP%% %%PREFIX%%/%%PG_USER%% || /usr/bin/true
|
||||
@dirrmtry share/postgresql/tsearch_data
|
||||
@dirrmtry share/postgresql
|
||||
@dirrmtry etc/periodic/daily
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
PORTNAME?= postgresql
|
||||
DISTVERSION?= 9.1.2
|
||||
PORTREVISION?= 2
|
||||
PORTREVISION?= 3
|
||||
CATEGORIES?= databases
|
||||
MASTER_SITES= ${MASTER_SITE_PGSQL}
|
||||
MASTER_SITE_SUBDIR= source/v${DISTVERSION}
|
||||
|
@ -296,7 +296,8 @@ MAN7= ABORT.7 ALTER_AGGREGATE.7 ALTER_COLLATION.7 ALTER_CONVERSION.7 \
|
|||
SECURITY_LABEL.7
|
||||
.endif
|
||||
|
||||
PLIST_SUB+= PG_USER=$(PG_USER)
|
||||
PLIST_SUB+= PG_USER=$(PG_USER) \
|
||||
PG_GROUP=$(PG_GROUP)
|
||||
SUB_LIST+= PG_GROUP=$(PG_GROUP) \
|
||||
PG_USER=$(PG_USER) \
|
||||
PG_UID=$(PG_UID)
|
||||
|
@ -355,7 +356,7 @@ do-install:
|
|||
${MKDIR} ${PREFIX}/etc/periodic/daily ;\
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/502.pgsql \
|
||||
${PREFIX}/etc/periodic/daily
|
||||
${MKDIR} ${LOCALBASE}/${PG_USER} && ${CHOWN} ${PG_USER}:${PG_GROUP} ${LOCALBASE}/${PG_USER}
|
||||
${MKDIR} ${PREFIX}/${PG_USER} && ${CHOWN} ${PG_USER}:${PG_GROUP} ${PREFIX}/${PG_USER}
|
||||
. endif # SERVER_ONLY
|
||||
. if defined(CLIENT_ONLY)
|
||||
@ cd ${WRKSRC}/src && ${SETENV} ${MAKE_ENV} ${GMAKE} install-local
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
# postgresql_flags="-w -s -m fast"
|
||||
# postgresql_initdb_flags="--encoding=utf-8 --lc-collate=C"
|
||||
# postgresql_class="default"
|
||||
# postgresql_profiles=""
|
||||
#
|
||||
# See %%PREFIX%%/share/doc/postgresql/README-server for more info
|
||||
#
|
||||
|
@ -39,7 +40,6 @@ postgresql_initdb_flags=${postgresql_initdb_flags:-"--encoding=utf-8 --lc-collat
|
|||
|
||||
name=postgresql
|
||||
rcvar=postgresql_enable
|
||||
command_args="-D ${postgresql_data} ${postgresql_flags}"
|
||||
extra_commands="reload initdb"
|
||||
|
||||
start_cmd="postgresql_command start"
|
||||
|
@ -50,11 +50,62 @@ status_cmd="postgresql_command status"
|
|||
|
||||
initdb_cmd="postgresql_initdb"
|
||||
|
||||
if [ -n "$2" ]; then
|
||||
profile="$2"
|
||||
if [ "x${postgresql_profiles}" != "x" ]; then
|
||||
eval postgresql_data="\${postgresql_${profile}_data:-}"
|
||||
if [ "x${postgresql_data}" = "x" ]; then
|
||||
echo "You must define a data directory (postgresql_${profile}_data)"
|
||||
exit 1
|
||||
fi
|
||||
eval postgresql_enable="\${postgresql_${profile}_enable:-${postgresql_enable}}
|
||||
eval postgresql_data="\${postgresql_${profile}_data:-${postgresql_data}}
|
||||
eval postgresql_flags="\${postgresql_${profile}_flags:-${postgresql_flags}}"
|
||||
eval postgresql_initdb_flags="\${postgresql_${profile}_initdb_flags:-${postgresql_initdb_flags}}"
|
||||
fi
|
||||
else
|
||||
if [ "x${postgresql_profiles}" != "x" -a "x$1" != "x" ]; then
|
||||
for profile in ${postgresql_profiles}; do
|
||||
eval _enable="\${postgresql_${profile}_enable}"
|
||||
case "x${_enable:-${postgresql_enable}}" in
|
||||
x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee])
|
||||
continue
|
||||
;;
|
||||
x[Yy][Ee][Ss])
|
||||
;;
|
||||
*)
|
||||
if test -z "$_enable"; then
|
||||
_var=postgresql_enable
|
||||
else
|
||||
_var=postgresql_"${profile}"_enable
|
||||
fi
|
||||
echo "Bad value" \
|
||||
"'${_enable:-${postgresql_enable}}'" \
|
||||
"for ${_var}. " \
|
||||
"Profile ${profile} skipped."
|
||||
continue
|
||||
;;
|
||||
esac
|
||||
echo "===> postgresql profile: ${profile}"
|
||||
%%PREFIX%%/etc/rc.d/postgresql $1 ${profile}
|
||||
retcode="$?"
|
||||
if [ "0${retcode}" -ne 0 ]; then
|
||||
failed="${profile} (${retcode}) ${failed:-}"
|
||||
else
|
||||
success="${profile} ${success:-}"
|
||||
fi
|
||||
done
|
||||
exit 0
|
||||
fi
|
||||
fi
|
||||
|
||||
command_args="-D ${postgresql_data} ${postgresql_flags}"
|
||||
|
||||
postgresql_command()
|
||||
{
|
||||
su -l ${postgresql_user} -c "exec ${command} ${command_args} ${rc_arg}"
|
||||
}
|
||||
|
||||
|
||||
postgresql_initdb()
|
||||
{
|
||||
su -l -c ${postgresql_class} ${postgresql_user} -c "exec %%PREFIX%%/bin/initdb ${postgresql_initdb_flags} -D ${postgresql_data}"
|
||||
|
|
|
@ -765,8 +765,8 @@ share/postgresql/tsearch_data/ispell_sample.affix
|
|||
share/postgresql/tsearch_data/ispell_sample.dict
|
||||
share/postgresql/tsearch_data/synonym_sample.syn
|
||||
share/postgresql/tsearch_data/thesaurus_sample.ths
|
||||
@exec /bin/mkdir -p %%LOCALBASE%%/%%PG_USER%% || /usr/bin/true
|
||||
@exec /usr/bin/chown %%PG_USER%%:%%PG_GROUP%% %%LOCALBASE%%/%%PG_USER%% || /usr/bin/true
|
||||
@exec /bin/mkdir -p %%PREFIX%%/%%PG_USER%% || /usr/bin/true
|
||||
@exec /usr/sbin/chown %%PG_USER%%:%%PG_GROUP%% %%PREFIX%%/%%PG_USER%% || /usr/bin/true
|
||||
@dirrmtry share/postgresql/tsearch_data
|
||||
@dirrmtry share/postgresql
|
||||
@dirrmtry etc/periodic/daily
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
PORTNAME?= postgresql
|
||||
DISTVERSION?= 9.1.2
|
||||
PORTREVISION?= 2
|
||||
PORTREVISION?= 3
|
||||
CATEGORIES?= databases
|
||||
MASTER_SITES= ${MASTER_SITE_PGSQL}
|
||||
MASTER_SITE_SUBDIR= source/v${DISTVERSION}
|
||||
|
@ -296,7 +296,8 @@ MAN7= ABORT.7 ALTER_AGGREGATE.7 ALTER_COLLATION.7 ALTER_CONVERSION.7 \
|
|||
SECURITY_LABEL.7
|
||||
.endif
|
||||
|
||||
PLIST_SUB+= PG_USER=$(PG_USER)
|
||||
PLIST_SUB+= PG_USER=$(PG_USER) \
|
||||
PG_GROUP=$(PG_GROUP)
|
||||
SUB_LIST+= PG_GROUP=$(PG_GROUP) \
|
||||
PG_USER=$(PG_USER) \
|
||||
PG_UID=$(PG_UID)
|
||||
|
@ -355,7 +356,7 @@ do-install:
|
|||
${MKDIR} ${PREFIX}/etc/periodic/daily ;\
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/502.pgsql \
|
||||
${PREFIX}/etc/periodic/daily
|
||||
${MKDIR} ${LOCALBASE}/${PG_USER} && ${CHOWN} ${PG_USER}:${PG_GROUP} ${LOCALBASE}/${PG_USER}
|
||||
${MKDIR} ${PREFIX}/${PG_USER} && ${CHOWN} ${PG_USER}:${PG_GROUP} ${PREFIX}/${PG_USER}
|
||||
. endif # SERVER_ONLY
|
||||
. if defined(CLIENT_ONLY)
|
||||
@ cd ${WRKSRC}/src && ${SETENV} ${MAKE_ENV} ${GMAKE} install-local
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
# postgresql_flags="-w -s -m fast"
|
||||
# postgresql_initdb_flags="--encoding=utf-8 --lc-collate=C"
|
||||
# postgresql_class="default"
|
||||
# postgresql_profiles=""
|
||||
#
|
||||
# See %%PREFIX%%/share/doc/postgresql/README-server for more info
|
||||
#
|
||||
|
@ -39,7 +40,6 @@ postgresql_initdb_flags=${postgresql_initdb_flags:-"--encoding=utf-8 --lc-collat
|
|||
|
||||
name=postgresql
|
||||
rcvar=postgresql_enable
|
||||
command_args="-D ${postgresql_data} ${postgresql_flags}"
|
||||
extra_commands="reload initdb"
|
||||
|
||||
start_cmd="postgresql_command start"
|
||||
|
@ -50,11 +50,62 @@ status_cmd="postgresql_command status"
|
|||
|
||||
initdb_cmd="postgresql_initdb"
|
||||
|
||||
if [ -n "$2" ]; then
|
||||
profile="$2"
|
||||
if [ "x${postgresql_profiles}" != "x" ]; then
|
||||
eval postgresql_data="\${postgresql_${profile}_data:-}"
|
||||
if [ "x${postgresql_data}" = "x" ]; then
|
||||
echo "You must define a data directory (postgresql_${profile}_data)"
|
||||
exit 1
|
||||
fi
|
||||
eval postgresql_enable="\${postgresql_${profile}_enable:-${postgresql_enable}}
|
||||
eval postgresql_data="\${postgresql_${profile}_data:-${postgresql_data}}
|
||||
eval postgresql_flags="\${postgresql_${profile}_flags:-${postgresql_flags}}"
|
||||
eval postgresql_initdb_flags="\${postgresql_${profile}_initdb_flags:-${postgresql_initdb_flags}}"
|
||||
fi
|
||||
else
|
||||
if [ "x${postgresql_profiles}" != "x" -a "x$1" != "x" ]; then
|
||||
for profile in ${postgresql_profiles}; do
|
||||
eval _enable="\${postgresql_${profile}_enable}"
|
||||
case "x${_enable:-${postgresql_enable}}" in
|
||||
x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee])
|
||||
continue
|
||||
;;
|
||||
x[Yy][Ee][Ss])
|
||||
;;
|
||||
*)
|
||||
if test -z "$_enable"; then
|
||||
_var=postgresql_enable
|
||||
else
|
||||
_var=postgresql_"${profile}"_enable
|
||||
fi
|
||||
echo "Bad value" \
|
||||
"'${_enable:-${postgresql_enable}}'" \
|
||||
"for ${_var}. " \
|
||||
"Profile ${profile} skipped."
|
||||
continue
|
||||
;;
|
||||
esac
|
||||
echo "===> postgresql profile: ${profile}"
|
||||
%%PREFIX%%/etc/rc.d/postgresql $1 ${profile}
|
||||
retcode="$?"
|
||||
if [ "0${retcode}" -ne 0 ]; then
|
||||
failed="${profile} (${retcode}) ${failed:-}"
|
||||
else
|
||||
success="${profile} ${success:-}"
|
||||
fi
|
||||
done
|
||||
exit 0
|
||||
fi
|
||||
fi
|
||||
|
||||
command_args="-D ${postgresql_data} ${postgresql_flags}"
|
||||
|
||||
postgresql_command()
|
||||
{
|
||||
su -l ${postgresql_user} -c "exec ${command} ${command_args} ${rc_arg}"
|
||||
}
|
||||
|
||||
|
||||
postgresql_initdb()
|
||||
{
|
||||
su -l -c ${postgresql_class} ${postgresql_user} -c "exec %%PREFIX%%/bin/initdb ${postgresql_initdb_flags} -D ${postgresql_data}"
|
||||
|
|
|
@ -765,8 +765,8 @@ share/postgresql/tsearch_data/ispell_sample.affix
|
|||
share/postgresql/tsearch_data/ispell_sample.dict
|
||||
share/postgresql/tsearch_data/synonym_sample.syn
|
||||
share/postgresql/tsearch_data/thesaurus_sample.ths
|
||||
@exec /bin/mkdir -p %%LOCALBASE%%/%%PG_USER%% || /usr/bin/true
|
||||
@exec /usr/bin/chown %%PG_USER%%:%%PG_GROUP%% %%LOCALBASE%%/%%PG_USER%% || /usr/bin/true
|
||||
@exec /bin/mkdir -p %%PREFIX%%/%%PG_USER%% || /usr/bin/true
|
||||
@exec /usr/sbin/chown %%PG_USER%%:%%PG_GROUP%% %%PREFIX%%/%%PG_USER%% || /usr/bin/true
|
||||
@dirrmtry share/postgresql/tsearch_data
|
||||
@dirrmtry share/postgresql
|
||||
@dirrmtry etc/periodic/daily
|
||||
|
|
Loading…
Reference in a new issue