Merge branch 'jenkins' into 'master'
Jenkins See merge request 12ww1160/cd_nagios!96
This commit is contained in:
516
CHANGELOG.md
516
CHANGELOG.md
File diff suppressed because it is too large
Load Diff
2
Gemfile
2
Gemfile
@@ -19,5 +19,5 @@ if RUBY_VERSION >= '1.8.7' && RUBY_VERSION < '1.9'
|
||||
gem 'rake', '~> 10.0'
|
||||
else
|
||||
# rubocop requires ruby >= 1.9
|
||||
gem 'rubocop'
|
||||
gem 'rubocop', '<= 0.50.0'
|
||||
end
|
||||
|
||||
10
Jenkinsfile
vendored
10
Jenkinsfile
vendored
@@ -7,7 +7,7 @@ pipeline {
|
||||
|
||||
stage('pulling master before adding files') {
|
||||
steps {
|
||||
sshagent(['0c22dc63-2ae0-4ad5-98e0-65aa0f0f411g']) {
|
||||
sshagent(['edd05eb6-26b5-4c7b-a5cc-ea2ab899f4fa']) {
|
||||
sh '''git config user.name "Jenkins Server"
|
||||
git config user.email jenkins@confdroid.com
|
||||
git pull origin master
|
||||
@@ -24,7 +24,7 @@ pipeline {
|
||||
|
||||
stage('puppet-lint tests') {
|
||||
steps {
|
||||
sh '''find . -iname *.pp -exec puppet-lint \\
|
||||
sh '''find . -iname *.pp -exec /var/lib/jenkins/bin/puppet-lint \\
|
||||
--no-class_inherits_from_params_class-check \\
|
||||
--no-variable_scope-check \\
|
||||
--no-80chars-check \\
|
||||
@@ -97,7 +97,7 @@ Changelog of Git Changelog.
|
||||
|
||||
|
||||
{{#commits}}
|
||||
<a href="https://gitlab.puppetsoft.com/12WW1160/git-changelog-lib/commit/{{hash}}">{{hash}}</a> {{authorName}} <i>{{commitTime}}</i>
|
||||
<a href="https://gitlab.confdroid.com/12WW1160/git-changelog-lib/commit/{{hash}}">{{hash}}</a> {{authorName}} <i>{{commitTime}}</i>
|
||||
<p>
|
||||
<h3>{{{messageTitle}}}</h3>
|
||||
|
||||
@@ -130,7 +130,7 @@ Changelog of Git Changelog.
|
||||
{{/hasIssue}}
|
||||
|
||||
{{#commits}}
|
||||
[https://gitlab.puppetsoft.com/12WW1160/git-changelog-lib/commit/{{hash}} {{hash}}] {{authorName}} {{commitTime}}
|
||||
[https://gitlab.confdroid.com/12WW1160/git-changelog-lib/commit/{{hash}} {{hash}}] {{authorName}} {{commitTime}}
|
||||
|
||||
\'\'\'{{{messageTitle}}}\'\'\'
|
||||
|
||||
@@ -207,7 +207,7 @@ Changelog of Git Changelog.
|
||||
|
||||
stage('recommit changes to repo') {
|
||||
steps {
|
||||
sshagent(['0c22dc63-2ae0-4ad5-98e0-65aa0f0f411g']) {
|
||||
sshagent(['edd05eb6-26b5-4c7b-a5cc-ea2ab899f4fa']) {
|
||||
sh '''git config user.name "Jenkins Server"
|
||||
git config user.email jenkins@confdroid.com
|
||||
echo `git add -A && git commit -am "recommit for updates in build $BUILD_NUMBER"`
|
||||
|
||||
26
README.md
26
README.md
@@ -1,6 +1,6 @@
|
||||
|Repo Name| version | Build Status|
|
||||
|---|---|---|---|
|
||||
|`cd_nagios`| 0.0.1.9 | [](https://jenkins.confdroid.com/job/cd_nagios/)|
|
||||
|`cd_nagios`| 0.0.1.9 | [](https://pipelines.confdroid.com/job/cd_nagios/)|
|
||||
|
||||
### Synopsis
|
||||
Nagios is a powerful open source software solution for monitoring your IT environments.
|
||||
@@ -13,7 +13,7 @@ Nagios is a powerful open source software solution for monitoring your IT enviro
|
||||
|
||||
### Table of Contents
|
||||
* [Features](#features)
|
||||
* [Repo Structure](https://gitlab.puppetsoft.com/12WW1160/cd_nagios/blob/master/REPOSTRUCTURE.md)
|
||||
* [Repo Structure](https://gitlab.confdroid.com/12WW1160/cd_nagios/blob/master/REPOSTRUCTURE.md)
|
||||
* [Dependencies](#dependencies)
|
||||
* [Deployment](#deployment)
|
||||
* [native Puppet deployment](#native-puppet-deployment)
|
||||
@@ -30,7 +30,7 @@ Nagios is a powerful open source software solution for monitoring your IT enviro
|
||||
* [Known Problems](#known-problems)
|
||||
* [Support](#support)
|
||||
* [Tests](#tests)
|
||||
* [Changelog](https://gitlab.puppetsoft.com/12WW1160/cd_nagios/blob/master/CHANGELOG.md)
|
||||
* [Changelog](https://gitlab.confdroid.com/12WW1160/cd_nagios/blob/master/CHANGELOG.md)
|
||||
* [Contact Us](https://confdroid.com/contact/)
|
||||
* [Disclaimer](#disclaimer)
|
||||
|
||||
@@ -86,14 +86,14 @@ Repostructure has moved to REPOSTRUCTURE.md in repo.
|
||||
### Dependencies
|
||||
All dependencies must be included in the catalogue.
|
||||
|
||||
* [cd_resources](https://gitlab.puppetsoft.com/12WW1160/cd_resources) for Yum repos.
|
||||
* [cd_apache](https://gitlab.puppetsoft.com/12WW1160/cd_apache) for installing httpd
|
||||
* [cd_firewall](https://gitlab.puppetsoft.com/12WW1160/cd_firewall) or [puppetlabs firewall](https://github.com/puppetlabs/puppetlabs-firewall) (optional)
|
||||
* [cd_selinux](https://gitlab.puppetsoft.com/12WW1160/cd_selinux) for selinux policy adjustments
|
||||
* [cd_certbot](https://gitlab.puppetsoft.com/12WW1160/cd_certbot) to auto-manage TLS certificates (optional)
|
||||
* [cd_nrpe](https://gitlab.puppetsoft.com/12WW1160/cd_nrpe) to manage NRPE (optional)
|
||||
* [cd_stdlib](https://gitlab.puppetsoft.com/12WW1160/cd_stdlib) or [puppetlabs stdlib](https://github.com/puppetlabs/puppetlabs-stdlib) to facilitate concat
|
||||
* [cd-concat](https://gitlab.puppetsoft.com/12WW1160/cd_stdlib) or [puppetlabs concat](https://github.com/puppetlabs/puppetlabs-concat) to concatenate configuration files from different sources.
|
||||
* [cd_resources](https://gitlab.confdroid.com/12WW1160/cd_resources) for Yum repos.
|
||||
* [cd_apache](https://gitlab.confdroid.com/12WW1160/cd_apache) for installing httpd
|
||||
* [cd_firewall](https://gitlab.confdroid.com/12WW1160/cd_firewall) or [puppetlabs firewall](https://github.com/puppetlabs/puppetlabs-firewall) (optional)
|
||||
* [cd_selinux](https://gitlab.confdroid.com/12WW1160/cd_selinux) for selinux policy adjustments
|
||||
* [cd_certbot](https://gitlab.confdroid.com/12WW1160/cd_certbot) to auto-manage TLS certificates (optional)
|
||||
* [cd_nrpe](https://gitlab.confdroid.com/12WW1160/cd_nrpe) to manage NRPE (optional)
|
||||
* [cd_stdlib](https://gitlab.confdroid.com/12WW1160/cd_stdlib) or [puppetlabs stdlib](https://github.com/puppetlabs/puppetlabs-stdlib) to facilitate concat
|
||||
* [cd-concat](https://gitlab.confdroid.com/12WW1160/cd_stdlib) or [puppetlabs concat](https://github.com/puppetlabs/puppetlabs-concat) to concatenate configuration files from different sources.
|
||||
|
||||
|
||||
### Deployment
|
||||
@@ -124,13 +124,13 @@ The following parameters must be set to make the module logic work properly:
|
||||
#### Optional Parameters
|
||||
|
||||
* `$ng_include_nrpe` : Whether to include NRPE as means for the Nagios server to connect to clients. Defaults to `true`.
|
||||
* `$ng_include_fw` : Whether to include firewall management. Requires [puppetlabs firewall](https://github.com/puppetlabs/puppetlabs-firewall) or [cd_firewall](https://gitlab.puppetsoft.com/12WW1160/cd_firewall), which is a backdated clone of the puppetlabs firewall but tested to be fully functioning with all our features.
|
||||
* `$ng_include_fw` : Whether to include firewall management. Requires [puppetlabs firewall](https://github.com/puppetlabs/puppetlabs-firewall) or [cd_firewall](https://gitlab.confdroid.com/12WW1160/cd_firewall), which is a backdated clone of the puppetlabs firewall but tested to be fully functioning with all our features.
|
||||
|
||||
|
||||
See the [full list of all available parameters](https://confdroid.com/2017/07/cd_nagios-parameters/).
|
||||
|
||||
### PuppetDB
|
||||
A working instance of PuppetDBconnected to the Puppet master is required for this to work. Installation and configuration of PuppetDB is out of scope for this module, however [cd_puppetdb](https://gitlab.puppetsoft.com/12WW1160/cd_puppetdb) is available to automate this task for you as well within a few minutes.
|
||||
A working instance of PuppetDBconnected to the Puppet master is required for this to work. Installation and configuration of PuppetDB is out of scope for this module, however [cd_puppetdb](https://gitlab.confdroid.com/12WW1160/cd_puppetdb) is available to automate this task for you as well within a few minutes.
|
||||
|
||||
### SELINUX
|
||||
All files and directories are configured with correct selinux context. If selinux is disabled, these contexts are ignored.
|
||||
|
||||
137
REPOSTRUCTURE.md
137
REPOSTRUCTURE.md
@@ -1,138 +1 @@
|
||||
.
|
||||
|-- doc
|
||||
| |-- css
|
||||
| | |-- common.css
|
||||
| | |-- full_list.css
|
||||
| | `-- style.css
|
||||
| |-- js
|
||||
| | |-- app.js
|
||||
| | |-- full_list.js
|
||||
| | `-- jquery.js
|
||||
| |-- puppet_classes
|
||||
| | |-- cd_nagios_3A_3Acertbot_3A_3Acerts.html
|
||||
| | |-- cd_nagios_3A_3Acertbot_3A_3Aconfig.html
|
||||
| | |-- cd_nagios_3A_3Aclient_3A_3Atarget.html
|
||||
| | |-- cd_nagios_3A_3Afirewall_3A_3Aiptables.html
|
||||
| | |-- cd_nagios_3A_3Amain_3A_3Aconfig.html
|
||||
| | |-- cd_nagios_3A_3Amain_3A_3Adirs.html
|
||||
| | |-- cd_nagios_3A_3Amain_3A_3Ainstall.html
|
||||
| | |-- cd_nagios_3A_3Amain_3A_3Auser.html
|
||||
| | |-- cd_nagios_3A_3Anagios_3A_3Aobjects_3A_3Aadd_contactgroups_rules.html
|
||||
| | |-- cd_nagios_3A_3Anagios_3A_3Aobjects_3A_3Aadd_contact_rules.html
|
||||
| | |-- cd_nagios_3A_3Anagios_3A_3Aobjects_3A_3Aadd_hostgroup_rules.html
|
||||
| | |-- cd_nagios_3A_3Anagios_3A_3Aobjects_3A_3Aadd_servicegroup_rules.html
|
||||
| | |-- cd_nagios_3A_3Anagios_3A_3Aobjects_3A_3Aadd_timeperiod_rules.html
|
||||
| | |-- cd_nagios_3A_3Anagios_3A_3Aobjects_3A_3Acommands.html
|
||||
| | |-- cd_nagios_3A_3Anagios_3A_3Aobjects_3A_3Aconfig.html
|
||||
| | |-- cd_nagios_3A_3Anagios_3A_3Aobjects_3A_3Acontactgroups.html
|
||||
| | |-- cd_nagios_3A_3Anagios_3A_3Aobjects_3A_3Acontacts.html
|
||||
| | |-- cd_nagios_3A_3Anagios_3A_3Aobjects_3A_3Ahostgroups.html
|
||||
| | |-- cd_nagios_3A_3Anagios_3A_3Aobjects_3A_3Aservicegroups.html
|
||||
| | |-- cd_nagios_3A_3Anagios_3A_3Aobjects_3A_3Atemplate_rules.html
|
||||
| | |-- cd_nagios_3A_3Anagios_3A_3Aobjects_3A_3Atimeperiods.html
|
||||
| | |-- cd_nagios_3A_3Aparams.html
|
||||
| | |-- cd_nagios_3A_3Aselinux_3A_3Aconfig.html
|
||||
| | |-- cd_nagios_3A_3Aserver_3A_3Aaccess_rules.html
|
||||
| | |-- cd_nagios_3A_3Aserver_3A_3Afiles.html
|
||||
| | |-- cd_nagios_3A_3Aserver_3A_3Aservice.html
|
||||
| | `-- cd_nagios.html
|
||||
| |-- puppet_defined_types
|
||||
| | |-- cd_nagios_3A_3Anagios_3A_3Aobjects_3A_3Aadd_contactgroups.html
|
||||
| | |-- cd_nagios_3A_3Anagios_3A_3Aobjects_3A_3Aadd_contact.html
|
||||
| | |-- cd_nagios_3A_3Anagios_3A_3Aobjects_3A_3Aadd_hostgroups.html
|
||||
| | |-- cd_nagios_3A_3Anagios_3A_3Aobjects_3A_3Aadd_servicegroups.html
|
||||
| | |-- cd_nagios_3A_3Anagios_3A_3Aobjects_3A_3Aadd_timeperiods.html
|
||||
| | |-- cd_nagios_3A_3Anagios_3A_3Aobjects_3A_3Atemplates.html
|
||||
| | `-- cd_nagios_3A_3Aserver_3A_3Aaccess.html
|
||||
| |-- file.README.html
|
||||
| |-- frames.html
|
||||
| |-- _index.html
|
||||
| |-- index.html
|
||||
| |-- puppet_class_list.html
|
||||
| |-- puppet_defined_type_list.html
|
||||
| `-- top-level-namespace.html
|
||||
|-- manifests
|
||||
| |-- certbot
|
||||
| | `-- certs.pp
|
||||
| |-- client
|
||||
| | `-- target.pp
|
||||
| |-- firewall
|
||||
| | `-- iptables.pp
|
||||
| |-- main
|
||||
| | |-- config.pp
|
||||
| | |-- dirs.pp
|
||||
| | |-- install.pp
|
||||
| | `-- user.pp
|
||||
| |-- nagios
|
||||
| | `-- objects
|
||||
| | |-- add_contactgroups.pp
|
||||
| | |-- add_contactgroups_rules.pp
|
||||
| | |-- add_contact.pp
|
||||
| | |-- add_contact_rules.pp
|
||||
| | |-- add_hostgroup_rules.pp
|
||||
| | |-- add_hostgroups.pp
|
||||
| | |-- add_servicegroup_rules.pp
|
||||
| | |-- add_servicegroups.pp
|
||||
| | |-- add_timeperiod_rules.pp
|
||||
| | |-- add_timeperiods.pp
|
||||
| | |-- commands.pp
|
||||
| | |-- config.pp
|
||||
| | |-- contactgroups.pp
|
||||
| | |-- contacts.pp
|
||||
| | |-- hostgroups.pp
|
||||
| | |-- servicegroups.pp
|
||||
| | |-- template_rules.pp
|
||||
| | |-- templates.pp
|
||||
| | `-- timeperiods.pp
|
||||
| |-- selinux
|
||||
| | `-- config.pp
|
||||
| |-- server
|
||||
| | |-- access.pp
|
||||
| | |-- access_rules.pp
|
||||
| | |-- files.pp
|
||||
| | `-- service.pp
|
||||
| |-- init.pp
|
||||
| `-- params.pp
|
||||
|-- templates
|
||||
| |-- certbot
|
||||
| | |-- get_cert.erb
|
||||
| | |-- unless_get_cert.erb
|
||||
| | `-- unless_renew_cert.erb
|
||||
| |-- httpd
|
||||
| | |-- forward_conf.erb
|
||||
| | |-- index_html.erb
|
||||
| | `-- nagios_ssl_vhost.erb
|
||||
| |-- nagios
|
||||
| | |-- cgi_cfg.erb
|
||||
| | |-- contactgroups_cfg_head.erb
|
||||
| | |-- contactgroups_cfg_rule.erb
|
||||
| | |-- contacts.cfg
|
||||
| | |-- contacts_cfg_head.erb
|
||||
| | |-- contacts_cfg_rule.erb
|
||||
| | |-- hostgroups_cfg_head.erb
|
||||
| | |-- hostgroups_cfg_rule.erb
|
||||
| | |-- htpasswd_rule.erb
|
||||
| | |-- nagios_cfg.erb
|
||||
| | |-- svcgroups_cfg_head.erb
|
||||
| | |-- svcgroups_cfg_rule.erb
|
||||
| | |-- templates_cfg_head.erb
|
||||
| | |-- templates_cfg_rule.erb
|
||||
| | |-- timeperiods_cfg_head.erb
|
||||
| | `-- timeperiods_cfg_rule.erb
|
||||
| `-- selinux
|
||||
| |-- checknagios.erb
|
||||
| |-- checknrpe.erb
|
||||
| |-- statuscgi.erb
|
||||
| |-- statusdat.erb
|
||||
| `-- taccgi.erb
|
||||
|-- tests
|
||||
| `-- UTF_Files
|
||||
|-- CHANGELOG.md
|
||||
|-- Gemfile
|
||||
|-- Gemfile.lock
|
||||
|-- Jenkinsfile
|
||||
|-- LICENSE
|
||||
|-- README.md
|
||||
`-- REPOSTRUCTURE.md
|
||||
|
||||
20 directories, 115 files
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>
|
||||
Documentation by YARD 0.9.9
|
||||
Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -52,7 +52,7 @@
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
||||
<div id="content"><h1 class="noborder title">Documentation by YARD 0.9.9</h1>
|
||||
<div id="content"><h1 class="noborder title">Documentation by YARD 0.9.12</h1>
|
||||
<div id="listing">
|
||||
<h1 class="alphaindex">Alphabetic Index</h1>
|
||||
|
||||
@@ -281,9 +281,7 @@
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:40:54 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -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 */
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
File: README
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
Status|
|
||||
|---|---|---|---|
|
||||
|<code>cd_nagios</code>| 0.0.1.9 | <a
|
||||
href="https://jenkins.confdroid.com/buildStatus/icon?job=cd_nagios">{Build
|
||||
href="https://pipelines.confdroid.com/buildStatus/icon?job=cd_nagios">{Build
|
||||
Status</a>/]|</p>
|
||||
|
||||
<h3 id="label-Synopsis">Synopsis</h3>
|
||||
@@ -89,7 +89,7 @@ production!!! __**</code></p>
|
||||
<p><a href="#features">Features</a></p>
|
||||
</li><li>
|
||||
<p><a
|
||||
href="https://gitlab.puppetsoft.com/12WW1160/cd_nagios/blob/master/REPOSTRUCTURE.md">Repo
|
||||
href="https://gitlab.confdroid.com/12WW1160/cd_nagios/blob/master/REPOSTRUCTURE.md">Repo
|
||||
Structure</a></p>
|
||||
</li><li>
|
||||
<p><a href="#dependencies">Dependencies</a></p>
|
||||
@@ -125,7 +125,7 @@ Structure</a></p>
|
||||
<p><a href="#tests">Tests</a></p>
|
||||
</li><li>
|
||||
<p><a
|
||||
href="https://gitlab.puppetsoft.com/12WW1160/cd_nagios/blob/master/CHANGELOG.md">Changelog</a></p>
|
||||
href="https://gitlab.confdroid.com/12WW1160/cd_nagios/blob/master/CHANGELOG.md">Changelog</a></p>
|
||||
</li><li>
|
||||
<p><a href="https://confdroid.com/contact/">Contact Us</a></p>
|
||||
</li><li>
|
||||
@@ -212,31 +212,30 @@ clients:
|
||||
<p>All dependencies must be included in the catalogue.</p>
|
||||
<ul><li>
|
||||
<p><a
|
||||
href="https://gitlab.puppetsoft.com/12WW1160/cd_resources">cd_resources</a>
|
||||
href="https://gitlab.confdroid.com/12WW1160/cd_resources">cd_resources</a>
|
||||
for Yum repos.</p>
|
||||
</li><li>
|
||||
<p><a href="https://gitlab.puppetsoft.com/12WW1160/cd_apache">cd_apache</a>
|
||||
for installing httpd</p>
|
||||
<p><a href="https://gitlab.confdroid.com/12WW1160/cd_apache">cd_apache</a> for
|
||||
installing httpd</p>
|
||||
</li><li>
|
||||
<p><a
|
||||
href="https://gitlab.puppetsoft.com/12WW1160/cd_firewall">cd_firewall</a>
|
||||
<p><a href="https://gitlab.confdroid.com/12WW1160/cd_firewall">cd_firewall</a>
|
||||
or <a href="https://github.com/puppetlabs/puppetlabs-firewall">puppetlabs
|
||||
firewall</a> (optional)</p>
|
||||
</li><li>
|
||||
<p><a href="https://gitlab.puppetsoft.com/12WW1160/cd_selinux">cd_selinux</a>
|
||||
<p><a href="https://gitlab.confdroid.com/12WW1160/cd_selinux">cd_selinux</a>
|
||||
for selinux policy adjustments</p>
|
||||
</li><li>
|
||||
<p><a href="https://gitlab.puppetsoft.com/12WW1160/cd_certbot">cd_certbot</a>
|
||||
<p><a href="https://gitlab.confdroid.com/12WW1160/cd_certbot">cd_certbot</a>
|
||||
to auto-manage TLS certificates (optional)</p>
|
||||
</li><li>
|
||||
<p><a href="https://gitlab.puppetsoft.com/12WW1160/cd_nrpe">cd_nrpe</a> to
|
||||
<p><a href="https://gitlab.confdroid.com/12WW1160/cd_nrpe">cd_nrpe</a> to
|
||||
manage NRPE (optional)</p>
|
||||
</li><li>
|
||||
<p><a href="https://gitlab.puppetsoft.com/12WW1160/cd_stdlib">cd_stdlib</a> or
|
||||
<p><a href="https://gitlab.confdroid.com/12WW1160/cd_stdlib">cd_stdlib</a> or
|
||||
<a href="https://github.com/puppetlabs/puppetlabs-stdlib">puppetlabs
|
||||
stdlib</a> to facilitate concat</p>
|
||||
</li><li>
|
||||
<p><a href="https://gitlab.puppetsoft.com/12WW1160/cd_stdlib">cd-concat</a> or
|
||||
<p><a href="https://gitlab.confdroid.com/12WW1160/cd_stdlib">cd-concat</a> or
|
||||
<a href="https://github.com/puppetlabs/puppetlabs-concat">puppetlabs
|
||||
concat</a> to concatenate configuration files from different sources.</p>
|
||||
</li></ul>
|
||||
@@ -288,7 +287,7 @@ Nagios server to connect to clients. Defaults to <code>true</code>.</p>
|
||||
Requires <a
|
||||
href="https://github.com/puppetlabs/puppetlabs-firewall">puppetlabs
|
||||
firewall</a> or <a
|
||||
href="https://gitlab.puppetsoft.com/12WW1160/cd_firewall">cd_firewall</a>,
|
||||
href="https://gitlab.confdroid.com/12WW1160/cd_firewall">cd_firewall</a>,
|
||||
which is a backdated clone of the puppetlabs firewall but tested to be
|
||||
fully functioning with all our features.</p>
|
||||
</li></ul>
|
||||
@@ -301,8 +300,8 @@ list of all available parameters</a>.</p>
|
||||
<p>A working instance of PuppetDBconnected to the Puppet master is required
|
||||
for this to work. Installation and configuration of PuppetDB is out of
|
||||
scope for this module, however <a
|
||||
href="https://gitlab.puppetsoft.com/12WW1160/cd_puppetdb">cd_puppetdb</a>
|
||||
is available to automate this task for you as well within a few minutes.</p>
|
||||
href="https://gitlab.confdroid.com/12WW1160/cd_puppetdb">cd_puppetdb</a> is
|
||||
available to automate this task for you as well within a few minutes.</p>
|
||||
|
||||
<h3 id="label-SELINUX">SELINUX</h3>
|
||||
|
||||
@@ -404,9 +403,7 @@ environments.</p>
|
||||
</div></div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:40:56 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Documentation by YARD 0.9.9</title>
|
||||
<title>Documentation by YARD 0.9.12</title>
|
||||
</head>
|
||||
<script type="text/javascript" charset="utf-8">
|
||||
var match = unescape(window.location.hash).match(/^#!(.+)/);
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
File: README
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
Status|
|
||||
|---|---|---|---|
|
||||
|<code>cd_nagios</code>| 0.0.1.9 | <a
|
||||
href="https://jenkins.confdroid.com/buildStatus/icon?job=cd_nagios">{Build
|
||||
href="https://pipelines.confdroid.com/buildStatus/icon?job=cd_nagios">{Build
|
||||
Status</a>/]|</p>
|
||||
|
||||
<h3 id="label-Synopsis">Synopsis</h3>
|
||||
@@ -89,7 +89,7 @@ production!!! __**</code></p>
|
||||
<p><a href="#features">Features</a></p>
|
||||
</li><li>
|
||||
<p><a
|
||||
href="https://gitlab.puppetsoft.com/12WW1160/cd_nagios/blob/master/REPOSTRUCTURE.md">Repo
|
||||
href="https://gitlab.confdroid.com/12WW1160/cd_nagios/blob/master/REPOSTRUCTURE.md">Repo
|
||||
Structure</a></p>
|
||||
</li><li>
|
||||
<p><a href="#dependencies">Dependencies</a></p>
|
||||
@@ -125,7 +125,7 @@ Structure</a></p>
|
||||
<p><a href="#tests">Tests</a></p>
|
||||
</li><li>
|
||||
<p><a
|
||||
href="https://gitlab.puppetsoft.com/12WW1160/cd_nagios/blob/master/CHANGELOG.md">Changelog</a></p>
|
||||
href="https://gitlab.confdroid.com/12WW1160/cd_nagios/blob/master/CHANGELOG.md">Changelog</a></p>
|
||||
</li><li>
|
||||
<p><a href="https://confdroid.com/contact/">Contact Us</a></p>
|
||||
</li><li>
|
||||
@@ -212,31 +212,30 @@ clients:
|
||||
<p>All dependencies must be included in the catalogue.</p>
|
||||
<ul><li>
|
||||
<p><a
|
||||
href="https://gitlab.puppetsoft.com/12WW1160/cd_resources">cd_resources</a>
|
||||
href="https://gitlab.confdroid.com/12WW1160/cd_resources">cd_resources</a>
|
||||
for Yum repos.</p>
|
||||
</li><li>
|
||||
<p><a href="https://gitlab.puppetsoft.com/12WW1160/cd_apache">cd_apache</a>
|
||||
for installing httpd</p>
|
||||
<p><a href="https://gitlab.confdroid.com/12WW1160/cd_apache">cd_apache</a> for
|
||||
installing httpd</p>
|
||||
</li><li>
|
||||
<p><a
|
||||
href="https://gitlab.puppetsoft.com/12WW1160/cd_firewall">cd_firewall</a>
|
||||
<p><a href="https://gitlab.confdroid.com/12WW1160/cd_firewall">cd_firewall</a>
|
||||
or <a href="https://github.com/puppetlabs/puppetlabs-firewall">puppetlabs
|
||||
firewall</a> (optional)</p>
|
||||
</li><li>
|
||||
<p><a href="https://gitlab.puppetsoft.com/12WW1160/cd_selinux">cd_selinux</a>
|
||||
<p><a href="https://gitlab.confdroid.com/12WW1160/cd_selinux">cd_selinux</a>
|
||||
for selinux policy adjustments</p>
|
||||
</li><li>
|
||||
<p><a href="https://gitlab.puppetsoft.com/12WW1160/cd_certbot">cd_certbot</a>
|
||||
<p><a href="https://gitlab.confdroid.com/12WW1160/cd_certbot">cd_certbot</a>
|
||||
to auto-manage TLS certificates (optional)</p>
|
||||
</li><li>
|
||||
<p><a href="https://gitlab.puppetsoft.com/12WW1160/cd_nrpe">cd_nrpe</a> to
|
||||
<p><a href="https://gitlab.confdroid.com/12WW1160/cd_nrpe">cd_nrpe</a> to
|
||||
manage NRPE (optional)</p>
|
||||
</li><li>
|
||||
<p><a href="https://gitlab.puppetsoft.com/12WW1160/cd_stdlib">cd_stdlib</a> or
|
||||
<p><a href="https://gitlab.confdroid.com/12WW1160/cd_stdlib">cd_stdlib</a> or
|
||||
<a href="https://github.com/puppetlabs/puppetlabs-stdlib">puppetlabs
|
||||
stdlib</a> to facilitate concat</p>
|
||||
</li><li>
|
||||
<p><a href="https://gitlab.puppetsoft.com/12WW1160/cd_stdlib">cd-concat</a> or
|
||||
<p><a href="https://gitlab.confdroid.com/12WW1160/cd_stdlib">cd-concat</a> or
|
||||
<a href="https://github.com/puppetlabs/puppetlabs-concat">puppetlabs
|
||||
concat</a> to concatenate configuration files from different sources.</p>
|
||||
</li></ul>
|
||||
@@ -288,7 +287,7 @@ Nagios server to connect to clients. Defaults to <code>true</code>.</p>
|
||||
Requires <a
|
||||
href="https://github.com/puppetlabs/puppetlabs-firewall">puppetlabs
|
||||
firewall</a> or <a
|
||||
href="https://gitlab.puppetsoft.com/12WW1160/cd_firewall">cd_firewall</a>,
|
||||
href="https://gitlab.confdroid.com/12WW1160/cd_firewall">cd_firewall</a>,
|
||||
which is a backdated clone of the puppetlabs firewall but tested to be
|
||||
fully functioning with all our features.</p>
|
||||
</li></ul>
|
||||
@@ -301,8 +300,8 @@ list of all available parameters</a>.</p>
|
||||
<p>A working instance of PuppetDBconnected to the Puppet master is required
|
||||
for this to work. Installation and configuration of PuppetDB is out of
|
||||
scope for this module, however <a
|
||||
href="https://gitlab.puppetsoft.com/12WW1160/cd_puppetdb">cd_puppetdb</a>
|
||||
is available to automate this task for you as well within a few minutes.</p>
|
||||
href="https://gitlab.confdroid.com/12WW1160/cd_puppetdb">cd_puppetdb</a> is
|
||||
available to automate this task for you as well within a few minutes.</p>
|
||||
|
||||
<h3 id="label-SELINUX">SELINUX</h3>
|
||||
|
||||
@@ -404,9 +403,7 @@ environments.</p>
|
||||
</div></div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:40:55 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -139,9 +139,7 @@ class cd_nagios {
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:40:56 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::certbot::certs
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -230,9 +230,7 @@ class cd_nagios::certbot::certs (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:01 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::client::target
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -384,9 +384,7 @@ class cd_nagios::client::target (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:01 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::firewall::iptables
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -207,9 +207,7 @@ class cd_nagios::firewall::iptables (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:01 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::main::config
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -195,9 +195,7 @@ class cd_nagios::main::config (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:00 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::main::dirs
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -468,9 +468,7 @@ class cd_nagios::main::dirs (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:00 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::main::install
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -213,9 +213,7 @@ class cd_nagios::main::install (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:01 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::main::user
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -194,9 +194,7 @@ class cd_nagios::main::user (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:00 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::nagios::objects::add_contact_rules
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -217,9 +217,7 @@ class cd_nagios::nagios::objects::add_contact_rules (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:02 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::nagios::objects::add_contactgroups_rules
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -215,9 +215,7 @@ class cd_nagios::nagios::objects::add_contactgroups_rules (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:03 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::nagios::objects::add_hostgroup_rules
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -214,9 +214,7 @@ class cd_nagios::nagios::objects::add_hostgroup_rules (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:03 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::nagios::objects::add_servicegroup_rules
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -214,9 +214,7 @@ class cd_nagios::nagios::objects::add_servicegroup_rules (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:03 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::nagios::objects::add_timeperiod_rules
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -222,9 +222,7 @@ class cd_nagios::nagios::objects::add_timeperiod_rules (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:03 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::nagios::objects::commands
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -575,9 +575,7 @@ class cd_nagios::nagios::objects::commands (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:02 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::nagios::objects::config
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -182,9 +182,7 @@ class cd_nagios::nagios::objects::config (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:01 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::nagios::objects::contactgroups
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -237,9 +237,7 @@ class cd_nagios::nagios::objects::contactgroups (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:02 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::nagios::objects::contacts
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -280,9 +280,7 @@ class cd_nagios::nagios::objects::contacts (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:02 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::nagios::objects::hostgroups
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -551,9 +551,7 @@ class cd_nagios::nagios::objects::hostgroups (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:02 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::nagios::objects::servicegroups
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -235,9 +235,7 @@ class cd_nagios::nagios::objects::servicegroups (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:02 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::nagios::objects::template_rules
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -305,9 +305,7 @@ class cd_nagios::nagios::objects::template_rules (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:02 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::nagios::objects::timeperiods
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -285,9 +285,7 @@ class cd_nagios::nagios::objects::timeperiods (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:02 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::params
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -5667,9 +5667,7 @@ $ng_nagios_service_cmd = 'check_nagios!/var/log/nagios/status.dat!5!/us
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:00 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::selinux::config
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -362,9 +362,7 @@ class cd_nagios::selinux::config (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:01 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::server::access_rules
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -195,9 +195,7 @@ class cd_nagios::server::access_rules (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:01 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::server::files
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -334,9 +334,7 @@ class cd_nagios::server::files (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:01 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Puppet Class: cd_nagios::server::service
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -532,9 +532,7 @@ class cd_nagios::server::service (
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:01 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Defined Type: cd_nagios::nagios::objects::add_contact
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -285,9 +285,7 @@ $ng_contacts_rule_erb = $::cd_nagios::params::ng_contacts_rule_erb
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:04 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Defined Type: cd_nagios::nagios::objects::add_contactgroups
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -237,9 +237,7 @@ $ng_cntctgrps_rule_erb = $::cd_nagios::params::ng_cntctgrps_rule_erb
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:04 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Defined Type: cd_nagios::nagios::objects::add_hostgroups
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -245,9 +245,7 @@ $ng_tgt_hostgrp_rule_erb = $::cd_nagios::params::ng_tgt_hostgrp_rule_erb
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:04 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Defined Type: cd_nagios::nagios::objects::add_servicegroups
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -245,9 +245,7 @@ $ng_tgt_svcgrp_rule_erb = $::cd_nagios::params::ng_tgt_svcgrp_rule_erb
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:04 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Defined Type: cd_nagios::nagios::objects::add_timeperiods
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -370,9 +370,7 @@ $ng_tgt_timep_rule_erb = $::cd_nagios::params::ng_tgt_timep_rule_erb
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:04 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Defined Type: cd_nagios::nagios::objects::templates
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -906,9 +906,7 @@ $ng_templates_rule_erb = $::cd_nagios::params::ng_templates_rule_erb
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:04 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Defined Type: cd_nagios::server::access
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -220,9 +220,7 @@ $ng_service = $::cd_nagios::params::ng_service
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:41:03 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<title>
|
||||
Top Level Namespace
|
||||
|
||||
— Documentation by YARD 0.9.9
|
||||
— Documentation by YARD 0.9.12
|
||||
|
||||
</title>
|
||||
|
||||
@@ -90,9 +90,7 @@
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Generated on Wed Sep 27 14:40:56 2017 by
|
||||
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
||||
0.9.9 (ruby-2.0.0).
|
||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -2,7 +2,8 @@
|
||||
./.yardoc/proxy_types: Applesoft BASIC program data
|
||||
./.yardoc/complete: empty
|
||||
./.yardoc/objects/root.dat: data
|
||||
./templates/httpd/index_html.erb: empty
|
||||
./doc/css/style.css: HTML document, UTF-8 Unicode text, with very long lines
|
||||
./doc/js/jquery.js: HTML document, UTF-8 Unicode text, with very long lines
|
||||
./doc/puppet_classes/cd_nagios_3A_3Aparams.html: HTML document, UTF-8 Unicode text
|
||||
./templates/httpd/index_html.erb: empty
|
||||
./REPOSTRUCTURE.md: very short file (no magic)
|
||||
|
||||
Reference in New Issue
Block a user