recommit for updates in build 9

This commit is contained in:
Jenkins ConfDroid
2018-12-10 16:58:41 +01:00
parent f215cc936a
commit 67ebcc2a65
3 changed files with 203 additions and 14 deletions

View File

@@ -8,6 +8,21 @@ Changelog of Git Changelog.
<h2> No issue </h2>
<a href="https://gitlab.confdroid.com/12WW1160/git-changelog-lib/commit/6bed2aaed91dec8">6bed2aaed91dec8</a> Jenkins ConfDroid <i>2018-12-10 15:22:32</i>
<p>
<h3>recommit for updates in build 8</h3>
</p>
<a href="https://gitlab.confdroid.com/12WW1160/git-changelog-lib/commit/144913bdb43acdc">144913bdb43acdc</a> Arne Teuke <i>2018-12-10 15:21:45</i>
<p>
<h3>adds parameter documentations</h3>
</p>
<a href="https://gitlab.confdroid.com/12WW1160/git-changelog-lib/commit/f95359166b201a8">f95359166b201a8</a> Arne Teuke <i>2018-12-10 15:12:32</i>
<p>
<h3>adds parameter documentations</h3>
</p>
<a href="https://gitlab.confdroid.com/12WW1160/git-changelog-lib/commit/f0380992ba53b31">f0380992ba53b31</a> Jenkins ConfDroid <i>2018-12-10 15:10:37</i>
<p>
<h3>recommit for updates in build 7</h3>

View File

@@ -142,7 +142,19 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses</a>/.</p>
46
47
48
49</pre>
49
50
51
52
53
54
55
56
57
58
59
60
61</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'manifests/main/files.pp', line 23</span>
@@ -172,6 +184,18 @@ class cd_haproxy::main::files (
content =&gt; template($hy_config_head_erb),
order =&gt; &#39;001&#39;,
}
# pid file
file { $hy_pid:
ensure =&gt; file,
owner =&gt; &#39;root&#39;,
group =&gt; &#39;root&#39;,
mode =&gt; &#39;0644&#39;,
selrange =&gt; s0,
selrole =&gt; object_r,
seltype =&gt; haproxy_var_run_t,
seluser =&gt; system_u,
}
}
}</pre>
</td>

View File

@@ -291,6 +291,24 @@ fqdns via array.</p>
</li>
<li>
<span class='name'>hy_user_home</span>
<span class='type'>(<tt>string</tt>)</span>
<em class="default">(defaults to: <tt>&#39;/var/lib/haproxy&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>the home directory for the haprxy user.</p>
</div>
</li>
<li>
<span class='name'>hy_user_shell</span>
@@ -311,15 +329,129 @@ fqdns via array.</p>
<li>
<span class='name'>hy_user_home</span>
<span class='name'>hy_log_target</span>
<span class='type'>(<tt>Any</tt>)</span>
<span class='type'>(<tt>string</tt>)</span>
<em class="default">(defaults to: <tt>&#39;127.0.0.1&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>Where to send the logs for this haproxy. Currently only local logging /
rsyslog forwarding supported.</p>
</div>
</li>
<li>
<span class='name'>hy_log_facility</span>
<span class='type'>(<tt>string</tt>)</span>
<em class="default">(defaults to: <tt>&#39;local2&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>which logging facility to use.</p>
</div>
</li>
<li>
<span class='name'>hy_chroot</span>
<span class='type'>(<tt>string</tt>)</span>
<em class="default">(defaults to: <tt>&#39;/var/lib/haproxy&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>where the chroot should be</p>
</div>
</li>
<li>
<span class='name'>hy_pid</span>
<span class='type'>(<tt>string</tt>)</span>
<em class="default">(defaults to: <tt>&#39;/var/run/haproxy.pid&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>the pid file to use.</p>
</div>
</li>
<li>
<span class='name'>hy_maxconn</span>
<span class='type'>(<tt>string</tt>)</span>
<em class="default">(defaults to: <tt>&#39;4000&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>how many connections should we max allow.</p>
</div>
</li>
<li>
<span class='name'>hy_show_stats</span>
<span class='type'>(<tt>boolean</tt>)</span>
<em class="default">(defaults to: <tt>true</tt>)</em>
&mdash;
<div class='inline'>
<p>whether we want to display the statistics page</p>
</div>
</li>
<li>
<span class='name'>hy_stats_socket</span>
<span class='type'>(<tt>string</tt>)</span>
<em class="default">(defaults to: <tt>&#39;/var/lib/haproxy/stats&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>name and path of the stats socket</p>
</div>
</li>
</ul>
@@ -332,15 +464,6 @@ fqdns via array.</p>
<pre class="lines">
39
40
41
42
43
44
45
46
47
48
49
50
@@ -370,10 +493,28 @@ fqdns via array.</p>
74
75
76
77</pre>
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 39</span>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 48</span>
class cd_haproxy::params (
@@ -396,6 +537,15 @@ $hy_user_comment = &#39;haproxy user&#39;,
$hy_user_home = &#39;/var/lib/haproxy&#39;,
$hy_user_shell = &#39;/sbin/nologin&#39;,
# logging
$hy_log_target = &#39;127.0.0.1&#39;,
$hy_log_facility = &#39;local2&#39;,
$hy_chroot = &#39;/var/lib/haproxy&#39;,
$hy_pid = &#39;/var/run/haproxy.pid&#39;,
$hy_maxconn = &#39;4000&#39;,
$hy_show_stats = true,
$hy_stats_socket = &#39;/var/lib/haproxy/stats&#39;,
) {
# service