From 9ddac140f4269519dd98bf5e466344e2407fe68a Mon Sep 17 00:00:00 2001 From: Mustafa Nural Date: Tue, 14 Jan 2025 14:02:03 -0500 Subject: [PATCH] fix obsolete interpolation for puppet v8 --- manifests/params.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/params.pp b/manifests/params.pp index a9708c2..0ff0312 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -19,8 +19,8 @@ $smtpd_recipient_restrictions = 'permit_mynetworks, reject_unauth_destination' $smtpd_data_restrictions = 'reject_unauth_pipelining' - case $::osfamily { - 'RedHat': { + case $facts['os']['family'] { + 'RedHat', 'redhat': { $tls_bundle = '/etc/pki/tls/certs/ca-bundle.crt' $tls_package = 'openssl' }