1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

bug fix - one extra ; in 880c4a940384e4d261f0b53febe60fd083d4edad

This commit is contained in:
Jerry Vonau 2019-11-03 23:37:55 -06:00
parent 38bc113059
commit b47558e284
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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