From 8a15bac595fd96debe52dc437bd34f682564b2b6 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Tue, 1 Oct 2019 14:52:15 +0200 Subject: delete legacy docs/ folder We now have a REFERENCE.md in the repository. We don't need the docs/ folder anymore. --- docs/puppet_classes/ferm_3A_3Aconfig.html | 201 ------------------------------ 1 file changed, 201 deletions(-) delete mode 100644 docs/puppet_classes/ferm_3A_3Aconfig.html (limited to 'docs/puppet_classes/ferm_3A_3Aconfig.html') diff --git a/docs/puppet_classes/ferm_3A_3Aconfig.html b/docs/puppet_classes/ferm_3A_3Aconfig.html deleted file mode 100644 index 139230c..0000000 --- a/docs/puppet_classes/ferm_3A_3Aconfig.html +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - Puppet Class: ferm::config - - — Documentation by YARD 0.9.12 - - - - - - - - - - - - - - - - - - - -
- - -

Puppet Class: ferm::config

-
- - -
-
Defined in:
-
- manifests/config.pp -
-
-
- -

Overview

-
-
-

This class handles the configuration file. Avoid modifying private classes.

- -
-
-
- - -
- - - - - -
-
-
-
-3
-4
-5
-6
-7
-8
-9
-10
-11
-12
-13
-14
-15
-16
-17
-18
-19
-20
-21
-22
-23
-24
-25
-26
-27
-28
-29
-30
-31
-32
-33
-34
-35
-36
-37
-38
-39
-40
-41
-42
-43
-44
-45
-46
-47
-48
-49
-
-
# File 'manifests/config.pp', line 3
-
-class ferm::config {
-
-  # this is a private class
-  assert_private("You're not supposed to do that!")
-
-  # copy static files to ferm
-  # on a long term point of view, we want to package this
-  file{'/etc/ferm.d':
-    ensure => 'directory',
-  }
-  -> file{'/etc/ferm.d/definitions':
-    ensure => 'directory',
-  }
-  -> file{'/etc/ferm.d/chains':
-    ensure => 'directory',
-  }
-
-  if $ferm::manage_configfile {
-    concat{$ferm::configfile:
-      ensure  => 'present',
-    }
-    concat::fragment{'ferm_header.conf':
-      target  => $ferm::configfile,
-      content => epp("${module_name}/ferm_header.conf.epp"),
-      order   => '01',
-    }
-
-    concat::fragment{'ferm.conf':
-      target  => $ferm::configfile,
-      content => epp("${module_name}/ferm.conf.epp"),
-      order   => '50',
-    }
-  }
-
-  ferm::chain{'INPUT':
-    policy            => $ferm::input_policy,
-    disable_conntrack => $ferm::disable_conntrack,
-  }
-  ferm::chain{'FORWARD':
-    policy            => $ferm::forward_policy,
-    disable_conntrack => $ferm::disable_conntrack,
-  }
-  ferm::chain{'OUTPUT':
-    policy            => $ferm::output_policy,
-    disable_conntrack => $ferm::disable_conntrack,
-  }
-}
-
-
-
- - - -
- - \ No newline at end of file -- cgit v1.2.3