Skip to content
Snippets Groups Projects
Commit 09134151 authored by daniel.pondruff's avatar daniel.pondruff Committed by daniel.pondruff
Browse files

- Dovecot enable/disable was reversed. fixed

parent 83647493
No related branches found
No related tags found
2 merge requests!7Issue16 7102,!1Codecept
......@@ -186,7 +186,7 @@ if [ ! -f ${INIT_STATE_FILE} ]; then
chown -R vmail:vmail /home/vmail
chmod 2770 /home/vmail
fi
elif [[ "${FEATURE_ENABLE}" = true ]]; then
elif [[ "${FEATURE_ENABLE}" = false ]]; then
INPUT=${SCRIPT_DIR}/../config/environment/qa/users.csv
OLDIFS=$IFS
IFS=','
......@@ -202,7 +202,7 @@ elif [[ "${FEATURE_ENABLE}" = true ]]; then
# echo "password : $password"
done < $INPUT
IFS=$OLDIFS
elif [[ "${FEATURE_ENABLE}" = false ]]; then
elif [[ "${FEATURE_ENABLE}" = true ]]; then
INPUT=${SCRIPT_DIR}/../config/environment/qa/users.csv
OLDIFS=$IFS
IFS=','
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment