From d49323a312a51753bdd9cd58dabda9c26b094110 Mon Sep 17 00:00:00 2001 From: Andras Elso Date: Fri, 13 Dec 2019 14:29:52 +0100 Subject: [PATCH] Fix authkey type: allow same type as file source authkey params is used in file resource type, so set same type as source params --- manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/init.pp b/manifests/init.pp index c0a79547..8af83194 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -349,7 +349,7 @@ Boolean $enable_secauth = $corosync::params::enable_secauth, Enum['1.x','2.x'] $secauth_parameter_mode = $corosync::params::secauth_parameter_mode, Enum['file', 'string'] $authkey_source = $corosync::params::authkey_source, - Variant[Stdlib::Absolutepath,Stdlib::Base64] $authkey = $corosync::params::authkey, + Variant[Stdlib::Filesource,Stdlib::Base64] $authkey = $corosync::params::authkey, Corosync::CryptoHash $crypto_hash = 'sha1', Corosync::CryptoCipher $crypto_cipher = 'aes256', Optional[Integer] $threads = undef,