diff options
author | Micah Anderson <micah@leap.se> | 2014-10-21 20:27:06 -0400 |
---|---|---|
committer | Micah Anderson <micah@leap.se> | 2014-10-21 20:27:06 -0400 |
commit | b76445c07688ba1b4e8940189f8538a741de92d4 (patch) | |
tree | e5ead748e1c534039b6aeffdb127734f14d0b505 /puppet/modules/site_apt | |
parent | 51a1e1c6db33ed2868ec74728f854237e3dfd86a (diff) |
modify the leap repository contents so they pick the correct repository,
based on the hiera value 'major_version' (#6251)
Change-Id: I10532ef83e3aa2d35d9c0be241952a35e366bba4
Diffstat (limited to 'puppet/modules/site_apt')
-rw-r--r-- | puppet/modules/site_apt/manifests/leap_repo.pp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/puppet/modules/site_apt/manifests/leap_repo.pp b/puppet/modules/site_apt/manifests/leap_repo.pp index 6b3d9919..2d4ba0e1 100644 --- a/puppet/modules/site_apt/manifests/leap_repo.pp +++ b/puppet/modules/site_apt/manifests/leap_repo.pp @@ -1,6 +1,9 @@ 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/debian stable main', + content => "deb http://deb.leap.se/${major_version} wheezy main\n", before => Exec[refresh_apt] } |