recommit for updates in build 13

This commit is contained in:
Jenkins ConfDroid
2018-12-29 19:21:11 +01:00
parent 2ce72bb35a
commit df9f3ad3ef
3 changed files with 84 additions and 9 deletions

View File

@@ -8,6 +8,16 @@ Changelog of Git Changelog.
<h2> No issue </h2> <h2> No issue </h2>
<a href="https://gitlab.confdroid.com/12WW1160/git-changelog-lib/commit/e947028d184999c">e947028d184999c</a> Jenkins ConfDroid <i>2018-12-24 15:51:39</i>
<p>
<h3>recommit for updates in build 12</h3>
</p>
<a href="https://gitlab.confdroid.com/12WW1160/git-changelog-lib/commit/f5c158000eea623">f5c158000eea623</a> Arne Teuke <i>2018-12-24 15:51:00</i>
<p>
<h3>updates template</h3>
</p>
<a href="https://gitlab.confdroid.com/12WW1160/git-changelog-lib/commit/dde6c78663accbf">dde6c78663accbf</a> Jenkins ConfDroid <i>2018-12-19 15:08:40</i> <a href="https://gitlab.confdroid.com/12WW1160/git-changelog-lib/commit/dde6c78663accbf">dde6c78663accbf</a> Jenkins ConfDroid <i>2018-12-19 15:08:40</i>
<p> <p>
<h3>recommit for updates in build 11</h3> <h3>recommit for updates in build 11</h3>

View File

@@ -42,7 +42,10 @@
| |-- init.pp | |-- init.pp
| `-- params.pp | `-- params.pp
|-- templates |-- templates
| |-- haproxy_acl_rule.erb
| |-- haproxy_backend_rule.erb
| |-- haproxy.cfg | |-- haproxy.cfg
| |-- haproxy_frontend_rule.erb
| `-- haproxy_head.erb | `-- haproxy_head.erb
|-- tests |-- tests
| `-- UTF_Files | `-- UTF_Files
@@ -53,4 +56,4 @@
|-- LICENSE |-- LICENSE
`-- README.md `-- README.md
11 directories, 42 files 11 directories, 45 files

View File

@@ -104,6 +104,46 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses</a>/.</p>
<div class="tags"> <div class="tags">
<p class="tag_title">Parameters:</p>
<ul class="param">
<li>
<span class='name'>frontend_name</span>
<span class='type'>(<tt>string</tt>)</span>
<em class="default">(defaults to: <tt>undef</tt>)</em>
&mdash;
<div class='inline'>
<p>the name for the frontend section rule.</p>
</div>
</li>
<li>
<span class='name'>frontend_order</span>
<span class='type'>(<tt>string</tt>)</span>
<em class="default">(defaults to: <tt>undef</tt>)</em>
&mdash;
<div class='inline'>
<p>the order where the concet should appear in the file.</p>
</div>
</li>
</ul>
</div><div class="method_details_list"> </div><div class="method_details_list">
@@ -113,24 +153,46 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses</a>/.</p>
<pre class="lines"> <pre class="lines">
23
24
25
26 26
27 27
28 28
29</pre> 29
30
31
32
33
34
35
36
37
38
39
40
41
42
43</pre>
</td> </td>
<td> <td>
<pre class="code"><span class="info file"># File 'manifests/server/proxy.pp', line 23</span> <pre class="code"><span class="info file"># File 'manifests/server/proxy.pp', line 26</span>
<span class='id identifier rubyid_define'>define</span> <span class='id identifier rubyid_cd_haproxy'>cd_haproxy</span><span class='op'>::</span><span class='id identifier rubyid_server'>server</span><span class='op'>::</span><span class='id identifier rubyid_proxy'>proxy</span> <span class='lparen'>(</span> define cd_haproxy::server::proxy (
<span class='rparen'>)</span> <span class='lbrace'>{</span> $frontend_name = undef,
$frontend_order = undef,
) {
$hy_main_config = cd_haproxy::params::hy_main_config
$hy_frontendrule = &#39;cd_haproxy/haproxy_frontend_rule.erb&#39;
<span class='rbrace'>}</span></pre> # create frontend section
concat::fragment { &quot;frontend_${name}&quot;:
target =&gt; $hy_main_config,
content =&gt; $hy_frontendrule,
order =&gt; $frontend_order,
}
}</pre>
</td> </td>
</tr> </tr>
</table> </table>