From 28c5dbbab21fb19606cb548582885458928eda30 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Fri, 27 Feb 2015 12:07:42 +0100 Subject: configury: add INITDB_SCLS variable This brings space separated list of Software Collections to be enabled with call to 'initdb' binary. * configure.ac (INITDB_SCLS): New variable. * postgresql-setup.in ($initdb_scls): New global. (perform_initdb): Source appropriate environment based on $initdb_scls content. --- postgresql-setup.in | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'postgresql-setup.in') diff --git a/postgresql-setup.in b/postgresql-setup.in index e0c3184..e1384cc 100644 --- a/postgresql-setup.in +++ b/postgresql-setup.in @@ -24,6 +24,9 @@ PGPORT_DEF=5432 # We upgrade by default from system's default PostgreSQL installation option_upgradefrom="@NAME_DEFAULT_PREV_SERVICE@" +# Space separated list of SCLS to be enabled during upgrade +initdb_scls="@INITDB_SCLS@" + USAGE_STRING=$"\ Usage: $0 MODE_OPTION [--unit=UNIT_NAME] [OPTION...] @@ -101,6 +104,7 @@ root_prereq() test "$(id -u)" -eq 0 || die "$0 requires root access for this action" } + read_config_file() { local key="" val="" @@ -225,8 +229,13 @@ perform_initdb() [ -x /sbin/restorecon ] && /sbin/restorecon "$initdb_log" fi + local scls_initdb_hacks= + test -n "$initdb_scls" \ + && scls_initdb_hacks="source scl_source enable $initdb_scls ; " + # Initialize the database - initdbcmd="$PGENGINE/initdb --pgdata='$pgdata' --auth='ident'" + initdbcmd="$scls_initdb_hacks" + initdbcmd+=" $PGENGINE/initdb --pgdata='$pgdata' --auth='ident'" initdbcmd+=" $PGSETUP_INITDB_OPTIONS" $SU_POSTGRES -c "$initdbcmd" >> "$initdb_log" 2>&1 < /dev/null -- cgit