From 673da3b664b4da03a57183588769497251e81e2f Mon Sep 17 00:00:00 2001 From: ZhongShengping Date: Fri, 7 Jul 2017 10:01:29 +0800 Subject: [PATCH] Remove deprecated keystone authtoken signing_dir option Change-Id: I7127fa24716b12f44e77f76dda83952a4b73efc2 --- manifests/keystone/authtoken.pp | 12 ------------ ...keystone_signing_dir_option-a7428d6b354975d2.yaml | 3 +++ 2 files changed, 3 insertions(+), 12 deletions(-) create mode 100644 releasenotes/notes/remove_deprecated_keystone_signing_dir_option-a7428d6b354975d2.yaml diff --git a/manifests/keystone/authtoken.pp b/manifests/keystone/authtoken.pp index 8566061..d21b19e 100644 --- a/manifests/keystone/authtoken.pp +++ b/manifests/keystone/authtoken.pp @@ -185,12 +185,6 @@ # (in seconds). Set to -1 to disable caching completely. Integer value # Defaults to $::os_service_default. # -# DEPRECATED PARAMETERS -# -# [*signing_dir*] -# (Optional) Directory used to cache files related to PKI tokens. -# Defaults to undef -# class zaqar::keystone::authtoken( $username = 'zaqar', $password = $::os_service_default, @@ -227,8 +221,6 @@ class zaqar::keystone::authtoken( $region_name = $::os_service_default, $revocation_cache_time = $::os_service_default, $token_cache_time = $::os_service_default, - # DEPRECATED PARAMETERS - $signing_dir = undef, ) { include ::zaqar::deps @@ -237,10 +229,6 @@ class zaqar::keystone::authtoken( fail('Please set password for Zaqar service user') } - if $signing_dir { - warning('signing_dir parameter is deprecated, has no effect and will be removed in the P release.') - } - keystone::resource::authtoken { 'zaqar_config': username => $username, password => $password, diff --git a/releasenotes/notes/remove_deprecated_keystone_signing_dir_option-a7428d6b354975d2.yaml b/releasenotes/notes/remove_deprecated_keystone_signing_dir_option-a7428d6b354975d2.yaml new file mode 100644 index 0000000..30b68c3 --- /dev/null +++ b/releasenotes/notes/remove_deprecated_keystone_signing_dir_option-a7428d6b354975d2.yaml @@ -0,0 +1,3 @@ +--- +upgrade: + - Deprecated keystone authtoken signing_dir option is removed in Pike.