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: Ic534a8249e3defc5f33a34580eaba8f478c4755a
This commit is contained in:
Tobias Urdin 2019-02-10 14:01:07 +01:00
parent 20ddad5bc8
commit 614d13d969
4 changed files with 6 additions and 6 deletions

View File

@ -30,8 +30,8 @@ class congress::config (
include ::congress::deps
validate_hash($congress_config)
validate_hash($congress_api_paste_ini)
validate_legacy(Hash, 'validate_hash', $congress_config)
validate_legacy(Hash, 'validate_hash', $congress_api_paste_ini)
create_resources('congress_config', $congress_config)
create_resources('congress_api_paste_ini', $congress_api_paste_ini)

View File

@ -56,8 +56,8 @@ class congress::db (
include ::congress::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 { 'congress_config':
connection => $database_connection,

View File

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

View File

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