67dfb62e4d
This commit adds the openrc templating that was in the old openstack repository, with some changes to the parameter names to match those in the file itself. Change-Id: I979ea227c93153c15ea78c0c47b9c94843a314af
18 lines
777 B
Plaintext
18 lines
777 B
Plaintext
#!/bin/sh
|
|
<% if @service_token -%>
|
|
export OS_SERVICE_TOKEN='<%= @service_token.gsub(/'/){ %q(\') } %>'
|
|
export OS_SERVICE_ENDPOINT='<%= @service_endpoint %>'
|
|
<% end -%>
|
|
export OS_NO_CACHE='<%= @use_no_cache %>'
|
|
export OS_TENANT_NAME='<%= @tenant_name %>'
|
|
export OS_USERNAME='<%= @username %>'
|
|
export OS_PASSWORD='<%= @password.gsub(/'/){ %q(\') } %>'
|
|
export OS_AUTH_URL='<%= @auth_url %>'
|
|
export OS_AUTH_STRATEGY='<%= @auth_strategy %>'
|
|
export OS_REGION_NAME='<%= @region_name %>'
|
|
export CINDER_ENDPOINT_TYPE='<%= @cinder_endpoint_type %>'
|
|
export GLANCE_ENDPOINT_TYPE='<%= @glance_endpoint_type %>'
|
|
export KEYSTONE_ENDPOINT_TYPE='<%= @keystone_endpoint_type %>'
|
|
export NOVA_ENDPOINT_TYPE='<%= @nova_endpoint_type %>'
|
|
export NEUTRON_ENDPOINT_TYPE='<%= @neutron_endpoint_type %>'
|