From 8f2e4d12477d1c61b19e7972069a1a003d13f3bb Mon Sep 17 00:00:00 2001 From: downtownallday Date: Tue, 9 Jun 2020 20:26:40 -0400 Subject: [PATCH] Set miab_ldap.conf variables only if they don't already exist so that the file may be pre-populated --- setup/ldap.sh | 54 +++++++++++++++++++++++++++------------------------ 1 file changed, 29 insertions(+), 25 deletions(-) diff --git a/setup/ldap.sh b/setup/ldap.sh index 0d52aded..78e2c4cb 100755 --- a/setup/ldap.sh +++ b/setup/ldap.sh @@ -71,42 +71,46 @@ wait_slapd_start() { say_verbose "...ok" } +_add_if_missing() { + local var="$1" + local val="$2" + local conf="$MIAB_INTERNAL_CONF_FILE" + if [ $(grep -c "^${var}=" "$conf") -eq 0 ]; then + echo "${var}=\"${val}\"" >> "$conf" + fi +} + create_miab_conf() { # create (if non-existing) or load (existing) ldap/miab_ldap.conf if [ ! -e "$MIAB_INTERNAL_CONF_FILE" ]; then say_verbose "Generating a new $MIAB_INTERNAL_CONF_FILE" mkdir -p "$(dirname $MIAB_INTERNAL_CONF_FILE)" - - # Use 64-character secret keys of safe characters - cat > "$MIAB_INTERNAL_CONF_FILE" <>"$MIAB_INTERNAL_CONF_FILE" <