Remove deprecated keystone authtoken signing_dir option

Change-Id: I7127fa24716b12f44e77f76dda83952a4b73efc2
This commit is contained in:
ZhongShengping 2017-07-07 10:01:29 +08:00
parent 531bc1ed67
commit 673da3b664
2 changed files with 3 additions and 12 deletions

View File

@ -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,

View File

@ -0,0 +1,3 @@
---
upgrade:
- Deprecated keystone authtoken signing_dir option is removed in Pike.