Recommit for updates in build 28
This commit is contained in:
@@ -325,6 +325,24 @@ inherited by all classes except defines.
|
|||||||
—
|
—
|
||||||
<div class='inline'>
|
<div class='inline'>
|
||||||
<p>Whether to configure the Nagios web interface to use HTTPS. Default is false. We recommend using a reverse proxy with SSL termination in front of the Nagios web interface, so this is disabled by default.</p>
|
<p>Whether to configure the Nagios web interface to use HTTPS. Default is false. We recommend using a reverse proxy with SSL termination in front of the Nagios web interface, so this is disabled by default.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
|
||||||
|
<span class='name'>ng_event_broker_module</span>
|
||||||
|
|
||||||
|
|
||||||
|
<span class='type'>(<tt>String</tt>)</span>
|
||||||
|
|
||||||
|
|
||||||
|
<em class="default">(defaults to: <tt>''</tt>)</em>
|
||||||
|
|
||||||
|
|
||||||
|
—
|
||||||
|
<div class='inline'>
|
||||||
|
<p>The event broker module to be used in the Nagios configuration. Default is an empty string, which means no event broker module will be configured. You can specify a module like ‘mod_gearman’ to enable the Gearman event broker module, for example.</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
@@ -340,10 +358,6 @@ inherited by all classes except defines.
|
|||||||
<pre class="lines">
|
<pre class="lines">
|
||||||
|
|
||||||
|
|
||||||
30
|
|
||||||
31
|
|
||||||
32
|
|
||||||
33
|
|
||||||
34
|
34
|
||||||
35
|
35
|
||||||
36
|
36
|
||||||
@@ -453,27 +467,37 @@ inherited by all classes except defines.
|
|||||||
140
|
140
|
||||||
141
|
141
|
||||||
142
|
142
|
||||||
143</pre>
|
143
|
||||||
|
144
|
||||||
|
145
|
||||||
|
146
|
||||||
|
147
|
||||||
|
148
|
||||||
|
149
|
||||||
|
150</pre>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 30</span>
|
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 34</span>
|
||||||
|
|
||||||
class confdroid_nagios::params (
|
class confdroid_nagios::params (
|
||||||
|
|
||||||
# main
|
# main
|
||||||
String $ng_nagios_server = 'nagios.example.net',
|
String $ng_nagios_server = 'nagios.example.net',
|
||||||
Array $ng_reqpackages_server = ['nagios','nagios-devel'],
|
Array $ng_reqpackages_server = ['nagios','nagios-devel'],
|
||||||
Array $ng_reqpackages_client = ['net-snmp-utils','nagios-plugins','nagios-plugins-all','nagios-plugins-nrpe','nagios-common'],
|
Array $ng_reqpackages_client = ['net-snmp-utils','nagios-plugins','nagios-plugins-all','nagios-plugins-nrpe','nagios-common'],
|
||||||
String $ng_pkg_ensure = 'present',
|
String $ng_pkg_ensure = 'present',
|
||||||
Boolean $ng_include_nrpe = true,
|
Boolean $ng_include_nrpe = true,
|
||||||
|
|
||||||
# user
|
# user
|
||||||
String $ng_user = 'nagios',
|
String $ng_user = 'nagios',
|
||||||
String $ng_u_comment = 'Nagios User',
|
String $ng_u_comment = 'Nagios User',
|
||||||
String $ng_u_groups = 'nagios',
|
String $ng_u_groups = 'nagios',
|
||||||
String $ng_u_shell = '/sbin/nologin',
|
String $ng_u_shell = '/sbin/nologin',
|
||||||
String $ng_u_home = '/home/nagios',
|
String $ng_u_home = '/home/nagios',
|
||||||
Integer $ng_u_uid = 1004,
|
Integer $ng_u_uid = 1004,
|
||||||
|
|
||||||
|
# nagios_cfg settings
|
||||||
|
String $ng_event_broker_module = '',
|
||||||
|
|
||||||
# httpd
|
# httpd
|
||||||
Boolean $ng_use_https = false,
|
Boolean $ng_use_https = false,
|
||||||
|
|||||||
Reference in New Issue
Block a user