From 6194a79187664c85d788f00248c8fd490a51eda1 Mon Sep 17 00:00:00 2001 From: Michael Watters Date: Tue, 28 May 2019 13:30:44 -0400 Subject: [PATCH] Change - Avoid puppet failures on windows nodes This module will cause puppet agent runs to fail when it is included on a windows node. Updated manifest to do nothing when running on a windows client. --- manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/init.pp b/manifests/init.pp index 0a087a1..15b15bf 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -74,7 +74,7 @@ class firewall ( } contain "${title}::linux" } - 'FreeBSD': { + 'FreeBSD', 'windows': { } default: { fail("${title}: Kernel '${::kernel}' is not currently supported") -- 2.45.2