Puppet Class: jenkins::repo::debian
- Defined in:
- manifests/repo/debian.pp
Overview
Class: jenkins::repo::debian
3 4 5 6 7 8 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 |
# File 'manifests/repo/debian.pp', line 3
class jenkins::repo::debian
{
if $caller_module_name != $module_name {
fail("Use of private class ${name} by ${caller_module_name}")
}
include stdlib
include apt
$pkg_host = 'https://pkg.jenkins.io'
ensure_packages(['apt-transport-https'])
if $::jenkins::lts {
apt::source { 'jenkins':
location => "${pkg_host}/debian-stable",
release => 'binary/',
repos => '',
include => {
'src' => false,
},
key => {
'id' => '150FDE3F7787E7D11EF4E12A9B7D32F2D50582E6',
'source' => "${pkg_host}/debian/jenkins-ci.org.key",
},
require => Package['apt-transport-https'],
notify => Exec['apt_update'],
}
}
else {
apt::source { 'jenkins':
location => "${pkg_host}/debian",
release => 'binary/',
repos => '',
include => {
'src' => false,
},
key => {
'id' => '150FDE3F7787E7D11EF4E12A9B7D32F2D50582E6',
'source' => "${pkg_host}/debian/jenkins-ci.org.key",
},
require => Package['apt-transport-https'],
notify => Exec['apt_update'],
}
}
anchor { 'jenkins::repo::debian::begin': }
-> Apt::Source['jenkins']
-> anchor { 'jenkins::repo::debian::end': }
}
|