Use validate_legacy

This changes all the puppet 3 validate_* functions
to use the validate_legacy function.

The validate_legacy function has been available since
about three years but require Puppet >= 4.4.0 and since
there is Puppet 4.10.12 as latest we should assume people
are running a fairly new Puppet 4 version.

This is the first step to then remove all validate function
calls and use proper types for parameter as described in spec [1].

[1] https://review.openstack.org/#/c/568929/

Change-Id: I740270de4abe95be5223db4dbb9ce2ecbe93a7c0
This commit is contained in:
Tobias Urdin 2019-02-10 13:42:17 +01:00
parent 7abdd7c8e7
commit ef6070bb90
4 changed files with 6 additions and 6 deletions

View File

@ -33,8 +33,8 @@ class barbican::config (
include ::barbican::deps
validate_hash($api_config)
validate_hash($api_paste_ini_config)
validate_legacy(Hash, 'validate_hash', $api_config)
validate_legacy(Hash, 'validate_hash', $api_paste_ini_config)
create_resources('barbican_config', $api_config)
create_resources('barbican_api_paste_ini', $api_paste_ini_config)

View File

@ -67,8 +67,8 @@ class barbican::db (
include ::barbican::deps
validate_re($database_connection,
'^(sqlite|mysql(\+pymysql)?|postgresql):\/\/(\S+:\S+@\S+\/\S+)?')
validate_legacy(Oslo::Dbconn, 'validate_re', $database_connection,
['^(sqlite|mysql(\+pymysql)?|postgresql):\/\/(\S+:\S+@\S+\/\S+)?'])
oslo::db { 'barbican_config':
connection => $database_connection,

View File

@ -45,7 +45,7 @@ class barbican::db::mysql(
include ::barbican::deps
validate_string($password)
validate_legacy(String, 'validate_string', $password)
::openstacklib::db::mysql { 'barbican':
user => $user,

View File

@ -31,7 +31,7 @@ class barbican::policy (
include ::barbican::deps
include ::barbican::params
validate_hash($policies)
validate_legacy(Hash, 'validate_hash', $policies)
Openstacklib::Policy::Base {
file_path => $policy_path,