From d1163a827dbc2ceeaa1938a671e66ab939b34c7b Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Mon, 17 Jan 2022 10:45:28 +0100 Subject: [PATCH] pcs_version: Switch from empty string to undef as default --- manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/init.pp b/manifests/init.pp index 1b4fe15f..4709bcfd 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -402,7 +402,7 @@ Boolean $test_corosync_config = $corosync::params::test_corosync_config, Optional[Variant[Stdlib::Absolutepath, Enum['off']]] $watchdog_device = undef, Enum['pcs', 'crm'] $provider = 'pcs', - String $pcs_version = '', + String $pcs_version = undef, ) inherits corosync::params { if $set_votequorum and (empty($quorum_members) and empty($multicast_address) and !$cluster_name) { fail('set_votequorum is true, so you must set either quorum_members, or one of multicast_address or cluster_name.')