aboutsummaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 0096c3a..c9f2a48 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -31,6 +31,15 @@
# @param rules a hash that holds all data for ferm::rule
# Default value: Empty Hash
# Allowed value: Any Hash
+# @param forward_log_dropped_packets boolean to enable/disable logging in the FORWARD chain of packets to the kernel log, if no explicit chain matched
+# Default value: false
+# Allowed values: (true|false)
+# @param output_log_dropped_packets boolean to enable/disable logging in the OUTPUT chain of packets to the kernel log, if no explicit chain matched
+# Default value: false
+# Allowed values: (true|false)
+# @param input_log_dropped_packets boolean to enable/disable logging in the INPUT chain of packets to the kernel log, if no explicit chain matched
+# Default value: false
+# Allowed values: (true|false)
class ferm (
Boolean $manage_service,
Boolean $manage_configfile,
@@ -39,6 +48,9 @@ class ferm (
Ferm::Policies $forward_policy,
Ferm::Policies $output_policy,
Ferm::Policies $input_policy,
+ Boolean $forward_log_dropped_packets,
+ Boolean $output_log_dropped_packets,
+ Boolean $input_log_dropped_packets,
Hash $rules,
) {
contain ferm::install