Skip to content

Commit

Permalink
added single quotes around password in group_vars/all.yaml (#256)
Browse files Browse the repository at this point in the history
Fix bug with passwords containing special characters
  • Loading branch information
dwrightco1 authored and Jeremy Brooks committed Jan 27, 2020
1 parent 738250f commit dafa526
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/config_util.sh
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ build_config() {
echo "" >> ${pf9_group_vars}
echo "# These variables are required to be filled in for the end-user's environment" >> ${pf9_group_vars}
echo "os_username: ${os_username}" >> ${pf9_group_vars}
echo "os_password: ${os_password}" >> ${pf9_group_vars}
echo "os_password: '${os_password}'" >> ${pf9_group_vars}
echo "os_region: ${os_region}" >> ${pf9_group_vars}
echo "os_tenant: ${os_tenant}" >> ${pf9_group_vars}
echo "du_url: ${du_url}" >> ${pf9_group_vars}
Expand Down

0 comments on commit dafa526

Please sign in to comment.