Quote OS_PASSWORD variable

Unquoted OS_PASSWORD variable can break shell commands when special
characters are used.

Closes-Bug: #1663185
Change-Id: Ia61a4ea1861d0f8792355213443b202b15ab862c
This commit is contained in:
Andy McCrae 2017-02-14 16:11:03 +00:00
parent 0e0401b8b5
commit 02a104d77e
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ export NOVA_ENDPOINT_TYPE={{ openrc_nova_endpoint_type }}
export OS_ENDPOINT_TYPE={{ openrc_os_endpoint_type }}
export OS_INTERFACE={{ openrc_os_endpoint_type }}
export OS_USERNAME={{ openrc_os_username }}
export OS_PASSWORD={{ openrc_os_password }}
export OS_PASSWORD="{{ openrc_os_password }}"
export OS_PROJECT_NAME={{ openrc_os_tenant_name }}
export OS_TENANT_NAME={{ openrc_os_tenant_name }}
export OS_AUTH_URL={{ openrc_os_auth_url }}