Puppet Class: jenkins::package

Defined in:
manifests/package.pp

Overview

jenkins::package handles the actual installation of the Jenkins native package installation.

The package might not specify a dependency on Java, so you may need to specify that yourself



7
8
9
10
11
12
13
14
15
16
# File 'manifests/package.pp', line 7

class jenkins::package {

  if $caller_module_name != $module_name {
    fail("Use of private class ${name} by ${caller_module_name}")
  }

  package { $::jenkins::package_name:
    ensure => $::jenkins::version,
  }
}