Compare commits

..

1 Commits

Author SHA1 Message Date
Jenkins Server
4daee1e064 Remove Jenkinsfile for Gitea mirror 2026-04-16 17:53:32 +02:00
7 changed files with 5 additions and 183 deletions

View File

@@ -21,11 +21,7 @@
## Synopsis
Jenkins is an open-source automation server written in Java that automates the software development process, including building, testing, and deploying code.
`confdroid_jenkins` is a Puppet module for installing and managing Jenkins.
> This is a Work in Progress, currently features are added.
Puppet 6 repo for managing Jenkins. Internal only due to access details for gitlab
## WARNING

View File

@@ -96,13 +96,7 @@
<h2 id="label-Synopsis">Synopsis</h2>
<p>Jenkins is an open-source automation server written in Java that automates the software development process, including building, testing, and deploying code.</p>
<p><code>confdroid_jenkins</code> is a Puppet module for installing and managing Jenkins.</p>
<blockquote>
<p>This is a Work in Progress, currently features are added.</p>
</blockquote>
<p>Puppet 6 repo for managing Jenkins. Internal only due to access details for gitlab</p>
<h2 id="label-WARNING">WARNING</h2>

View File

@@ -96,13 +96,7 @@
<h2 id="label-Synopsis">Synopsis</h2>
<p>Jenkins is an open-source automation server written in Java that automates the software development process, including building, testing, and deploying code.</p>
<p><code>confdroid_jenkins</code> is a Puppet module for installing and managing Jenkins.</p>
<blockquote>
<p>This is a Work in Progress, currently features are added.</p>
</blockquote>
<p>Puppet 6 repo for managing Jenkins. Internal only due to access details for gitlab</p>
<h2 id="label-WARNING">WARNING</h2>

View File

@@ -107,55 +107,7 @@
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60</pre>
12</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'manifests/main/dirs.pp', line 6</span>
@@ -165,54 +117,6 @@ class confdroid_jenkins::main::dirs (
) inherits confdroid_jenkins::params {
if $fqdn == $js_host_fqdn {
require confdroid_jenkins::main::install
# jenkins home
file { $js_jenkins_home:
ensure =&gt; &#39;directory&#39;,
owner =&gt; &#39;jenkins&#39;,
group =&gt; &#39;jenkins&#39;,
mode =&gt; &#39;0755&#39;,
selrange =&gt; s0,
selrole =&gt; object_r,
seltype =&gt; var_lib_t,
seluser =&gt; unconfined_u,
}
# jenkins logs
file { $js_jenkins_logs:
ensure =&gt; &#39;directory&#39;,
owner =&gt; &#39;jenkins&#39;,
group =&gt; &#39;jenkins&#39;,
mode =&gt; &#39;0755&#39;,
selrange =&gt; s0,
selrole =&gt; object_r,
seltype =&gt; var_lib_t,
seluser =&gt; system_u,
}
# jenkins cache
file { $js_jenkins_cache:
ensure =&gt; &#39;directory&#39;,
owner =&gt; &#39;jenkins&#39;,
group =&gt; &#39;jenkins&#39;,
mode =&gt; &#39;0750&#39;,
selrange =&gt; s0,
selrole =&gt; object_r,
seltype =&gt; var_t,
seluser =&gt; unconfined_u,
}
# jenkins run
file { $js_jenkins_run:
ensure =&gt; &#39;directory&#39;,
owner =&gt; &#39;jenkins&#39;,
group =&gt; &#39;jenkins&#39;,
mode =&gt; &#39;0770&#39;,
selrange =&gt; s0,
selrole =&gt; object_r,
seltype =&gt; var_run_t,
seluser =&gt; system_u,
}
}
}</pre>
</td>

View File

@@ -411,13 +411,7 @@
55
56
57
58
59
60
61
62
63
64</pre>
58</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 20</span>
@@ -458,12 +452,6 @@ class confdroid_jenkins::params (
# Service
$js_service = &#39;jenkins&#39;
# directories
$js_jenkins_home = &#39;/var/lib/jenkins&#39;
$js_jenkins_logs = &quot;${js_jenkins_home}/logs&quot;
$js_jenkins_cache = &#39;/var/cache/jenkins&#39;
$js_jenkins_run = &#39;/run/jenkins&#39;
# includes must be last
include confdroid_jenkins::main::config
}</pre>

View File

@@ -8,53 +8,5 @@ class confdroid_jenkins::main::dirs (
) inherits confdroid_jenkins::params {
if $fqdn == $js_host_fqdn {
require confdroid_jenkins::main::install
# jenkins home
file { $js_jenkins_home:
ensure => 'directory',
owner => 'jenkins',
group => 'jenkins',
mode => '0755',
selrange => s0,
selrole => object_r,
seltype => var_lib_t,
seluser => unconfined_u,
}
# jenkins logs
file { $js_jenkins_logs:
ensure => 'directory',
owner => 'jenkins',
group => 'jenkins',
mode => '0755',
selrange => s0,
selrole => object_r,
seltype => var_lib_t,
seluser => system_u,
}
# jenkins cache
file { $js_jenkins_cache:
ensure => 'directory',
owner => 'jenkins',
group => 'jenkins',
mode => '0750',
selrange => s0,
selrole => object_r,
seltype => var_t,
seluser => unconfined_u,
}
# jenkins run
file { $js_jenkins_run:
ensure => 'directory',
owner => 'jenkins',
group => 'jenkins',
mode => '0770',
selrange => s0,
selrole => object_r,
seltype => var_run_t,
seluser => system_u,
}
}
}

View File

@@ -53,12 +53,6 @@ class confdroid_jenkins::params (
# Service
$js_service = 'jenkins'
# directories
$js_jenkins_home = '/var/lib/jenkins'
$js_jenkins_logs = "${js_jenkins_home}/logs"
$js_jenkins_cache = '/var/cache/jenkins'
$js_jenkins_run = '/run/jenkins'
# includes must be last
include confdroid_jenkins::main::config
}