summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkwadronaut <kwadronaut@leap.se>2017-10-03 22:52:25 +0200
committerkwadronaut <kwadronaut@leap.se>2017-10-03 22:52:25 +0200
commitaac73fbe01660f5a231ab891c967c16b635fc78d (patch)
tree981ab1e1d4a109b66bb0babcce35d154d5ddb64f
parent18db08c95b0de9cf1ad511fa1dbb20f5eda8bbac (diff)
Bug: jessie apt keys stable/experimental/staging
The apt sources lines for people using more experimental software was wrong, we abolished the 'experimental' repository some time ago and develoment happens now in the master branch. solves #8862, #8876
-rw-r--r--puppet/modules/site_apt/manifests/leap_repo.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/puppet/modules/site_apt/manifests/leap_repo.pp b/puppet/modules/site_apt/manifests/leap_repo.pp
index 08c3d0e6..8b688cfb 100644
--- a/puppet/modules/site_apt/manifests/leap_repo.pp
+++ b/puppet/modules/site_apt/manifests/leap_repo.pp
@@ -7,14 +7,14 @@ class site_apt::leap_repo {
# on jessie, keys need to be in /etc/apt/...
# see https://0xacab.org/leap/platform/issues/8862
if ( $::operatingsystemmajrelease == '8' ) {
- if $::site_apt::apt_url_platform_basic =~ /.*experimental.*/ {
+ if $::site_apt::apt_platform_component =~ /.*(staging|master).*/ {
$archive_key = 'CE433F407BAB443AFEA196C1837C1AD5367429D9'
} else {
$archive_key = '1E453B2CE87BEE2F7DFE99661E34A1828E207901'
}
}
if ( $::operatingsystemmajrelease != '8' ) {
- if $::site_apt::apt_url_platform_basic =~ /.*experimental.*/ {
+ if $::site_apt::apt_platform_component =~ /.*(staging|master).*/ {
$archive_key = '/usr/share/keyrings/leap-experimental-archive.gpg'
} else {
$archive_key = '/usr/share/keyrings/leap-archive.gpg'