recommit for updates in build 7

This commit is contained in:
Jenkins ConfDroid
2018-12-10 16:10:37 +01:00
parent f9b79fedb3
commit f0380992ba
3 changed files with 39 additions and 66 deletions

View File

@@ -158,20 +158,20 @@ class cd_haproxy::main::user (
require cd_haproxy::main::install
# manage user
user { $hy_user:
user { $hy_user_name:
ensure => present,
name => $hy_user,
name => $hy_user_name,
allowdupe => false,
comment => $hy_user_comment,
gid => $hy_user,
gid => $hy_user_name,
managehome => true,
home => $hy_user_home,
shell => $hy_user_shell,
}
group { $hy_user:
group { $hy_user_name:
ensure => present,
name => $hy_user,
name => $hy_user_name,
allowdupe => false,
}
}

View File

@@ -219,69 +219,22 @@ fqdns via array.</p>
</li>
<li>
<span class='name'>hy_proxy_mode</span>
<span class='type'>(<tt>string</tt>)</span>
&mdash;
<div class='inline'>
<p>which mode the ha proxy should work in. Valid oprtions are
<code>http</code> and <code>tcp</code>.</p>
</div>
</li>
<li>
<span class='name'>hy_fe_port</span>
<span class='type'>(<tt>string</tt>)</span>
&mdash;
<div class='inline'>
<p>the frontend port to list to. opens in firewall, if enabled, and is used in
configuration templates. only active if <code>hy_proxy_mode</code> is set
to <code>tcp</code>.</p>
</div>
</li>
<li>
<span class='name'>hy_be_port</span>
<span class='type'>(<tt>string</tt>)</span>
&mdash;
<div class='inline'>
<p>the backend port to send traffic through. only active if
<code>hy_proxy_mode</code> is set to <code>tcp</code>.</p>
</div>
</li>
<li>
<span class='name'>hy_http_port</span>
<span class='type'>(<tt>Any</tt>)</span>
<span class='type'>(<tt>string</tt>)</span>
<em class="default">(defaults to: <tt>&#39;80&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>the http port. used in firewall settings</p>
</div>
</li>
<li>
@@ -289,12 +242,17 @@ to <code>tcp</code>.</p>
<span class='name'>hy_https_port</span>
<span class='type'>(<tt>Any</tt>)</span>
<span class='type'>(<tt>string</tt>)</span>
<em class="default">(defaults to: <tt>&#39;443&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>the https port. used in firewall settings</p>
</div>
</li>
<li>
@@ -359,6 +317,11 @@ to <code>tcp</code>.</p>
<pre class="lines">
35
36
37
38
39
40
41
42
@@ -392,15 +355,10 @@ to <code>tcp</code>.</p>
70
71
72
73
74
75
76
77
78</pre>
73</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 40</span>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 35</span>
class cd_haproxy::params (