recommit for updates in build 4

This commit is contained in:
Jenkins ConfDroid
2018-12-10 14:39:32 +01:00
parent e18c4131ef
commit 19592e5d19
15 changed files with 576 additions and 73 deletions

View File

@@ -69,6 +69,8 @@
<span class='object_link'><a href="cd_haproxy_3A_3Amain_3A_3Adirs.html" title="puppet_classes::cd_haproxy::main::dirs (puppet_class)">cd_haproxy::main::dirs</a></span><br/>
<span class='object_link'><a href="cd_haproxy_3A_3Amain_3A_3Auser.html" title="puppet_classes::cd_haproxy::main::user (puppet_class)">cd_haproxy::main::user</a></span><br/>
<span class='object_link'><a href="cd_haproxy_3A_3Amain_3A_3Afiles.html" title="puppet_classes::cd_haproxy::main::files (puppet_class)">cd_haproxy::main::files</a></span><br/>
<span class='object_link'><a href="cd_haproxy_3A_3Amain_3A_3Aconfig.html" title="puppet_classes::cd_haproxy::main::config (puppet_class)">cd_haproxy::main::config</a></span><br/>
@@ -225,8 +227,6 @@ fqdns via array.</p>
<span class='type'>(<tt>string</tt>)</span>
<em class="default">(defaults to: <tt>&#39;http&#39;</tt>)</em>
&mdash;
<div class='inline'>
@@ -244,8 +244,6 @@ fqdns via array.</p>
<span class='type'>(<tt>string</tt>)</span>
<em class="default">(defaults to: <tt>&#39;&#39;</tt>)</em>
&mdash;
<div class='inline'>
@@ -264,8 +262,6 @@ to <code>tcp</code>.</p>
<span class='type'>(<tt>string</tt>)</span>
<em class="default">(defaults to: <tt>&#39;&#39;</tt>)</em>
&mdash;
<div class='inline'>
@@ -275,6 +271,84 @@ to <code>tcp</code>.</p>
</li>
<li>
<span class='name'>hy_http_port</span>
<span class='type'>(<tt>Any</tt>)</span>
<em class="default">(defaults to: <tt>&#39;80&#39;</tt>)</em>
</li>
<li>
<span class='name'>hy_https_port</span>
<span class='type'>(<tt>Any</tt>)</span>
<em class="default">(defaults to: <tt>&#39;443&#39;</tt>)</em>
</li>
<li>
<span class='name'>hy_user_name</span>
<span class='type'>(<tt>Any</tt>)</span>
<em class="default">(defaults to: <tt>&#39;haproxy&#39;</tt>)</em>
</li>
<li>
<span class='name'>hy_user_comment</span>
<span class='type'>(<tt>Any</tt>)</span>
<em class="default">(defaults to: <tt>&#39;haproxy user&#39;</tt>)</em>
</li>
<li>
<span class='name'>hy_user_home</span>
<span class='type'>(<tt>Any</tt>)</span>
<em class="default">(defaults to: <tt>&#39;/var/lib/haproxy&#39;</tt>)</em>
</li>
<li>
<span class='name'>hy_user_shell</span>
<span class='type'>(<tt>Any</tt>)</span>
<em class="default">(defaults to: <tt>&#39;/sbin/nologin&#39;</tt>)</em>
</li>
</ul>
@@ -313,33 +387,49 @@ to <code>tcp</code>.</p>
65
66
67
68</pre>
68
69
70
71
72
73
74
75
76</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 40</span>
class cd_haproxy::params (
$pkg_ensure = &#39;latest&#39;,
$reqpackages = [&#39;haproxy&#39;],
$pkg_ensure = &#39;latest&#39;,
$reqpackages = [&#39;haproxy&#39;],
$hy_host_fqdn = &quot;proxy.${::domain}&quot;,
$hy_host_fqdn = &quot;proxy.${::domain}&quot;,
# firewall
$hy_manage_fw = true,
$hy_fw_order_no = &#39;50&#39;,
$hy_manage_fw = true,
$hy_fw_order_no = &#39;50&#39;,
# main config
$hy_proxy_mode = &#39;http&#39;,
$hy_fe_port = &#39;&#39;,
$hy_be_port = &#39;&#39;,
$hy_http_port = &#39;80&#39;,
$hy_https_port = &#39;443&#39;,
# user
$hy_user_name = &#39;haproxy&#39;,
$hy_user_comment = &#39;haproxy user&#39;,
$hy_user_home = &#39;/var/lib/haproxy&#39;,
$hy_user_shell = &#39;/sbin/nologin&#39;,
) {
# service
$hy_service = &#39;haproxy&#39;
$hy_service = &#39;haproxy&#39;
# installation section
# directories
# files
# includes must be last