blob: 3d95d8b6988cfd5f9d996b3f2590fd1dcc49ff54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# install leap deb repo together with leap-keyring package
# containing the apt signing key
class site_apt::leap_repo {
$platform = hiera_hash('platform')
$major_version = $platform['major_version']
apt::sources_list { 'leap.list':
content => "deb ${::site_apt::apt_url_platform_basic} ${::site_apt::apt_platform_codename} ${::site_apt::apt_platform_component}\n",
before => Exec[refresh_apt]
}
package { 'leap-archive-keyring':
ensure => latest
}
}
|