From 4f574356ed4568b037476d6d91688e754153efef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Casta=C3=B1eda?= Date: Fri, 19 Mar 2021 12:27:11 +0100 Subject: [PATCH] Fix undefined variables warning on newer PuppetServer versions --- manifests/params.pp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/manifests/params.pp b/manifests/params.pp index 9d98aa9..842224b 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -16,6 +16,12 @@ $radvd_package = 'radvd' $sysconfig = {} $deb_default = false + $auth_unix_ro = undef + $auth_unix_rw = undef + $unix_sock_dir = undef + $unix_sock_group = undef + $unix_sock_ro_perms = undef + $unix_sock_rw_perms = undef } 'Debian': { $libvirt_package = 'libvirt-bin'