Skip to content
Snippets Groups Projects
Verified Commit f7b31905 authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

jenkins: Install required jre in jenkins base profile

Without this change, applying the manifest on jenkins server the first time around just
fails the jenkins service as the jre is missing from the PATH.

Implementation wise, this moves the java install instruction into the jenkins base
profile as it's already a requirement for the agent.

Related to T3770
parent 006aefad
No related branches found
No related tags found
1 merge request!454jenkins: Install required jre in jenkins base profile
class profile::jenkins::agent {
include profile::jenkins::base
include ::java
$jenkins_agent_jar_url = lookup('jenkins::agent::jar_url')
$jenkins_url = lookup('jenkins::backend::url')
......
class profile::jenkins::base {
include ::java
group {'jenkins':
ensure => present,
system => true,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment