From ff77b8736b78236f1ef02aba037730d774e28241 Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Wed, 17 Jun 2015 21:36:15 -0400 Subject: [PATCH] Correct the name of the auth param deprecation msg This corrects the name of the parameters in the auth parameters deprecation message. Change-Id: Ie0f500c9623fb0709852f74c245ce551a0153bbd --- manifests/api.pp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manifests/api.pp b/manifests/api.pp index f2c1e31..66d71d3 100644 --- a/manifests/api.pp +++ b/manifests/api.pp @@ -131,7 +131,7 @@ class ceilometer::api ( if $keystone_auth_admin_prefix { validate_re($keystone_auth_admin_prefix, '^(/.+[^/])?$') - warning('The keystone_auth_admin_prefix parameter is deprecated. Please use auth_uri and identity_uri instead.') + warning('The keystone_auth_admin_prefix parameter is deprecated. Please use keystone_auth_uri and keystone_identity_uri instead.') ceilometer_config { 'keystone_authtoken/auth_admin_prefix': value => $keystone_auth_admin_prefix; } @@ -142,7 +142,7 @@ class ceilometer::api ( } if $keystone_host { - warning('The keystone_host parameter is deprecated. Please use auth_uri and identity_uri instead.') + warning('The keystone_host parameter is deprecated. Please use keystone_auth_uri and keystone_identity_uri instead.') ceilometer_config { 'keystone_authtoken/auth_host': value => $keystone_host; } @@ -153,7 +153,7 @@ class ceilometer::api ( } if $keystone_port { - warning('The keystone_port parameter is deprecated. Please use auth_uri and identity_uri instead.') + warning('The keystone_port parameter is deprecated. Please use keystone_auth_uri and keystone_identity_uri instead.') ceilometer_config { 'keystone_authtoken/auth_port': value => $keystone_port; } @@ -164,7 +164,7 @@ class ceilometer::api ( } if $keystone_protocol { - warning('The keystone_protocol parameter is deprecated. Please use auth_uri and identity_uri instead.') + warning('The keystone_protocol parameter is deprecated. Please use keystone_auth_uri and keystone_identity_uri instead.') ceilometer_config { 'keystone_authtoken/auth_protocol': value => $keystone_protocol; } -- 2.45.2