Remove deprecated keystone authtoken signing_dir option

Change-Id: I3ff98337ff10750c0fda5379e336ea5e7ac6e44a
This commit is contained in:
ZhongShengping
2017-07-07 09:58:06 +08:00
parent 2576358abc
commit 55acfdf048
2 changed files with 3 additions and 12 deletions
-12
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 barbican::keystone::authtoken(
$password = $::os_service_default,
$username = 'barbican',
@@ -227,8 +221,6 @@ class barbican::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 ::barbican::deps
@@ -237,10 +229,6 @@ class barbican::keystone::authtoken(
fail('Please set password for barbican 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 { 'barbican_config':
username => $username,
password => $password,
@@ -0,0 +1,3 @@
---
upgrade:
- Deprecated keystone authtoken signing_dir option is removed in Pike.