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

- Dovecot enable/disable was reversed. fixed

parent af4a2a08
No related branches found
No related tags found
Loading
...@@ -186,7 +186,7 @@ if [ ! -f ${INIT_STATE_FILE} ]; then ...@@ -186,7 +186,7 @@ if [ ! -f ${INIT_STATE_FILE} ]; then
chown -R vmail:vmail /home/vmail chown -R vmail:vmail /home/vmail
chmod 2770 /home/vmail chmod 2770 /home/vmail
fi fi
elif [[ "${FEATURE_ENABLE}" = true ]]; then elif [[ "${FEATURE_ENABLE}" = false ]]; then
INPUT=${SCRIPT_DIR}/../config/environment/qa/users.csv INPUT=${SCRIPT_DIR}/../config/environment/qa/users.csv
OLDIFS=$IFS OLDIFS=$IFS
IFS=',' IFS=','
...@@ -202,7 +202,7 @@ elif [[ "${FEATURE_ENABLE}" = true ]]; then ...@@ -202,7 +202,7 @@ elif [[ "${FEATURE_ENABLE}" = true ]]; then
# echo "password : $password" # echo "password : $password"
done < $INPUT done < $INPUT
IFS=$OLDIFS IFS=$OLDIFS
elif [[ "${FEATURE_ENABLE}" = false ]]; then elif [[ "${FEATURE_ENABLE}" = true ]]; then
INPUT=${SCRIPT_DIR}/../config/environment/qa/users.csv INPUT=${SCRIPT_DIR}/../config/environment/qa/users.csv
OLDIFS=$IFS OLDIFS=$IFS
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