blob: 2d4ba0e1b76a5f0a52259d8cebc616563c825911 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
class site_apt::leap_repo {
$platform = hiera_hash('platform')
$major_version = $platform['major_version']
apt::sources_list { 'leap.list':
content => "deb http://deb.leap.se/${major_version} wheezy main\n",
before => Exec[refresh_apt]
}
package { 'leap-keyring':
ensure => latest
}
# We wont be able to install the leap-keyring package unless the leap apt
# source has been added and apt has been refreshed
Exec['refresh_apt'] -> Package['leap-keyring']
}
|