Skip to content

Commit dafa526

Browse files
dwrightco1Jeremy Brooks
authored and
Jeremy Brooks
committed
added single quotes around password in group_vars/all.yaml (#256)
Fix bug with passwords containing special characters
1 parent 738250f commit dafa526

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/config_util.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ build_config() {
226226
echo "" >> ${pf9_group_vars}
227227
echo "# These variables are required to be filled in for the end-user's environment" >> ${pf9_group_vars}
228228
echo "os_username: ${os_username}" >> ${pf9_group_vars}
229-
echo "os_password: ${os_password}" >> ${pf9_group_vars}
229+
echo "os_password: '${os_password}'" >> ${pf9_group_vars}
230230
echo "os_region: ${os_region}" >> ${pf9_group_vars}
231231
echo "os_tenant: ${os_tenant}" >> ${pf9_group_vars}
232232
echo "du_url: ${du_url}" >> ${pf9_group_vars}

0 commit comments

Comments
 (0)