diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1640d00..3f5d3ec 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,112 +8,232 @@ Changelog of Git Changelog.
Documentation by YARD 0.9.9
+
Documentation by YARD 0.9.12
diff --git a/doc/css/style.css b/doc/css/style.css
index f682a69..57e8f9d 100644
--- a/doc/css/style.css
+++ b/doc/css/style.css
@@ -484,6 +484,13 @@ pre.code .rubyid_backref,
pre.code .rubyid_nth_ref { color: #6D79DE; }
pre.code .regexp, .dregexp { color: #036A07; }
pre.code a { border-bottom: 1px dotted #bbf; }
+/* inline code */
+p > code {
+ padding: 1px 3px 1px 3px;
+ border: 1px solid #E1E1E8;
+ background: #F7F7F9;
+ border-radius: 4px;
+}
/* Color fix for links */
#content .summary_desc pre.code .id > .object_link a, /* identifier */
diff --git a/doc/file.README.html b/doc/file.README.html
index 95d7256..bd2ab9c 100644
--- a/doc/file.README.html
+++ b/doc/file.README.html
@@ -6,7 +6,7 @@
File: README
- — Documentation by YARD 0.9.9
+ — Documentation by YARD 0.9.12
@@ -61,8 +61,8 @@
|Repo Name| version | Build
Status|
|---|---|---|---|
-|cd_apache| 0.0.1.7 | {Build
+|cd_apache| 0.0.1.8 | {Build
Status/]|
Synopsis
@@ -113,7 +113,7 @@ production!!! __**
Tests
Changelog
+href="https://gitlab.confdroid.com/12WW1160/cd_apache/blob/master/CHANGELOG.md#changelog">Changelog
Contact Us
@@ -133,10 +133,12 @@ structure (optional)
* file
system permissions
* selinux context
-* manage firewall settings (optional)
-
-Maintenance
-* manage the service
+* manage firewall settings
+(optional)
+* manage nagios monitoring (optional)
+Maintenance
+* manage the
+service
vHosts
@@ -174,7 +176,7 @@ gets installed automatically.
All dependencies must be included in the catalogue.
-
cd_resources
+href="https://gitlab.confdroid.com/12WW1160/cd_resources">cd_resources
Deployment
@@ -279,9 +281,7 @@ environments.
diff --git a/doc/frames.html b/doc/frames.html
index 0cb1371..42ca6b6 100644
--- a/doc/frames.html
+++ b/doc/frames.html
@@ -2,7 +2,7 @@
+
+
+
Puppet Class: cd_apache::firewall::iptables
+
+
+
+ - Inherits:
+ - cd_apache::params
+
+
+
+
+ - Defined in:
+ -
+ manifests/firewall/iptables.pp
+
+
+
+
+
Summary
+ manage firewall settings through cd_firewall or puppetlabs-firewall
+
+
Overview
+
+
+
+
cd_apache::firewall::iptables.pp
+Module name: cd_apache
+Author: Arne Teuke
+(arne_teuke@ConfDroid.com)
+License:
+ This file is part of cd_apache.
+
+
cd_apache is used for providing automatic configuration of
+ log analyzer.
+
+Copyright (C) 2017 ConfDroid (copyright@ConfDroid.com)
+ This program is
+free software: you can redistribute it and/or modify
+ it under the terms of
+the GNU General Public License as published by
+ the Free Software
+Foundation, either version 3 of the License, or
+ (at your option) any later
+version.
+
+
This program is distributed in the hope that it will be useful,
+ but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY
+or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License
+for more details.
+
+
You should have received a copy of the GNU General Public License
+ along
+with this program. If not, see www.gnu.org/licenses/.
+
+
+
+
+
+
+
+
+
+
+
+
+
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+35
+36
+37
+38
+39
+40
+41
+42
+ |
+
+ # File 'manifests/firewall/iptables.pp', line 24
+
+class cd_apache::firewall::iptables (
+
+) inherits cd_apache::params {
+
+ if $ae_manage_fw == true {
+
+ firewall { "${ae_order_no}${ae_http_port} tcp http port ${ae_http_port}":
+ proto => ['tcp','udp'],
+ dport => $ae_http_port,
+ action => 'accept',
+ }
+
+ firewall { "${ae_order_no}${ae_https_port} tcp http port ${ae_https_port}":
+ proto => ['tcp','udp'],
+ dport => $ae_https_port,
+ action => 'accept',
+ }
+ }
+}
+ |
+
+
+
+
+
+
+
+
+
+