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:
parent
38bc113059
commit
b47558e284
2 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Workaround for (web-published) images; will go away later
|
# 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
|
echo "mongodb_installed: True" >> $IIAB_STATE_FILE
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -154,7 +154,7 @@ if [ -f /etc/iiab/config_vars2.yml ]; then
|
||||||
|
|
||||||
# Fix up prior values in state file
|
# Fix up prior values in state file
|
||||||
# mongo role improved post image creation
|
# 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
|
echo "mongodb_installed: True" >> $IIAB_STATE_FILE
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue