From a2cdc885cba658aa2befef719b6fea1adb12101e Mon Sep 17 00:00:00 2001 From: Nacho Barrientos Date: Thu, 3 Dec 2020 17:33:29 +0100 Subject: [PATCH] Remove optional modifier on $table It does not really make sense to pass undef to nftables::rule --- manifests/simplerule.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/simplerule.pp b/manifests/simplerule.pp index 4f0b1dea..55909948 100644 --- a/manifests/simplerule.pp +++ b/manifests/simplerule.pp @@ -19,7 +19,7 @@ $order = '50', String $chain = 'default_in', - Optional[String] + String $table = 'inet-filter', Enum['accept', 'drop'] $action = 'accept',