From b47558e284b23aad609ead66f120fd430fd693b0 Mon Sep 17 00:00:00 2001 From: Jerry Vonau Date: Sun, 3 Nov 2019 23:37:55 -0600 Subject: [PATCH] bug fix - one extra ; in 880c4a940384e4d261f0b53febe60fd083d4edad --- iiab-configure | 2 +- iiab-install | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/iiab-configure b/iiab-configure index aa010bbfa..306be093f 100755 --- a/iiab-configure +++ b/iiab-configure @@ -43,7 +43,7 @@ else fi # Workaround for (web-published) images; will go away later -if grep -q sugar $IIAB_STATE_FILE; && ! grep -q mongodb $IIAB_STATE_FILE; then +if grep -q sugar $IIAB_STATE_FILE && ! grep -q mongodb $IIAB_STATE_FILE; then echo "mongodb_installed: True" >> $IIAB_STATE_FILE fi diff --git a/iiab-install b/iiab-install index 4715ea046..23a9bc629 100755 --- a/iiab-install +++ b/iiab-install @@ -154,7 +154,7 @@ if [ -f /etc/iiab/config_vars2.yml ]; then # Fix up prior values in state file # mongo role improved post image creation - if grep -q sugar $IIAB_STATE_FILE; && ! grep -q mongodb $IIAB_STATE_FILE; then + if grep -q sugar $IIAB_STATE_FILE && ! grep -q mongodb $IIAB_STATE_FILE; then echo "mongodb_installed: True" >> $IIAB_STATE_FILE fi