From d35805c0b5f89941f785dc07e23c2a1747c4891b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20=C3=98llegaard?= Date: Tue, 30 Apr 2013 11:48:54 +0200 Subject: [PATCH] Single quotes around auth file password In order to make sure passwords containing e.g. '$'-sign are exported correctly. Change-Id: Iefe9e9ab8fee5ef68d8edd8308268acac069f5a2 --- manifests/auth_file.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/auth_file.pp b/manifests/auth_file.pp index 9cc60db..fb99281 100644 --- a/manifests/auth_file.pp +++ b/manifests/auth_file.pp @@ -15,7 +15,7 @@ class openstack::auth_file( " export OS_TENANT_NAME=${admin_tenant} export OS_USERNAME=${admin_user} - export OS_PASSWORD=${admin_password} + export OS_PASSWORD='${admin_password}' export OS_AUTH_URL=\"http://${controller_node}:5000/v2.0/\" export OS_AUTH_STRATEGY=keystone export SERVICE_TOKEN=${keystone_admin_token}