aboutsummaryrefslogtreecommitdiff
path: root/docs/puppet_classes
diff options
context:
space:
mode:
Diffstat (limited to 'docs/puppet_classes')
-rw-r--r--docs/puppet_classes/ferm.html29
-rw-r--r--docs/puppet_classes/ferm_3A_3Aconfig.html14
2 files changed, 34 insertions, 9 deletions
diff --git a/docs/puppet_classes/ferm.html b/docs/puppet_classes/ferm.html
index 74c4b67..cbabd5c 100644
--- a/docs/puppet_classes/ferm.html
+++ b/docs/puppet_classes/ferm.html
@@ -152,6 +152,23 @@ Allowed values: Stdlib::Absolutepath</p>
<li>
+ <span class='name'>disable_conntrack</span>
+
+
+ <span class='type'>(<tt>Boolean</tt>)</span>
+
+
+
+ &mdash;
+ <div class='inline'><p>disable/enable the generation of conntrack rules
+Default value: false
+Allowed values: (true|false)</p>
+</div>
+
+ </li>
+
+ <li>
+
<span class='name'>forward_policy</span>
@@ -228,9 +245,6 @@ Allowed value: Any Hash</p>
<pre class="lines">
-31
-32
-33
34
35
36
@@ -252,15 +266,20 @@ Allowed value: Any Hash</p>
52
53
54
-55</pre>
+55
+56
+57
+58
+59</pre>
</td>
<td>
- <pre class="code"><span class="info file"># File 'manifests/init.pp', line 31</span>
+ <pre class="code"><span class="info file"># File 'manifests/init.pp', line 34</span>
class ferm (
Boolean $manage_service,
Boolean $manage_configfile,
Stdlib::Absolutepath $configfile,
+ Boolean $disable_conntrack,
Ferm::Policies $forward_policy,
Ferm::Policies $output_policy,
Ferm::Policies $input_policy,
diff --git a/docs/puppet_classes/ferm_3A_3Aconfig.html b/docs/puppet_classes/ferm_3A_3Aconfig.html
index 3d9813e..139230c 100644
--- a/docs/puppet_classes/ferm_3A_3Aconfig.html
+++ b/docs/puppet_classes/ferm_3A_3Aconfig.html
@@ -131,7 +131,10 @@
43
44
45
-46</pre>
+46
+47
+48
+49</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'manifests/config.pp', line 3</span>
@@ -171,13 +174,16 @@ class ferm::config {
}
ferm::chain{&#39;INPUT&#39;:
- policy =&gt; $ferm::input_policy,
+ policy =&gt; $ferm::input_policy,
+ disable_conntrack =&gt; $ferm::disable_conntrack,
}
ferm::chain{&#39;FORWARD&#39;:
- policy =&gt; $ferm::forward_policy,
+ policy =&gt; $ferm::forward_policy,
+ disable_conntrack =&gt; $ferm::disable_conntrack,
}
ferm::chain{&#39;OUTPUT&#39;:
- policy =&gt; $ferm::output_policy,
+ policy =&gt; $ferm::output_policy,
+ disable_conntrack =&gt; $ferm::disable_conntrack,
}
}</pre>
</td>