templates: openrc: Use 'true' and 'false' for insecure env variables

It seems that most tools are expecting a literal 'true' or 'false' value
for env variables, so use that instead of '1' and empty values.

Change-Id: I36c5460165dba6acd1b94e82c712312f9fd307a9
This commit is contained in:
Markos Chandras 2018-09-05 12:18:04 +01:00
parent a4a43d41e4
commit 82730e54cf
1 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,8 @@ export OS_AUTH_VERSION=3
{% endif %}
{% if openrc_insecure | bool %}
export OS_INSECURE=1
export OS_VERIFY=
export OS_INSECURE='true'
export OS_VERIFY='false'
# Convenience Aliases for Self-Signed Certs
alias cinder='cinder --insecure'
alias glance='glance --insecure'