From de34648ebc7584469021d83dde101941463185c9 Mon Sep 17 00:00:00 2001 From: Jo Rhett Date: Sat, 7 Sep 2024 13:32:06 -0700 Subject: [PATCH] Bugfix cannot reassign variable fr_service --- manifests/params.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/params.pp b/manifests/params.pp index 94071f2..87e3fd1 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -75,7 +75,7 @@ } # Whether the FreeRADIUS init.d startup script has a status setting or not - $fr_service = $facts['os']['family'] ? { + $fr_service_has_status = $facts['os']['family'] ? { 'RedHat' => true, 'Debian' => true, default => false,