Skip to content
Snippets Groups Projects
Verified Commit aac73fbe authored by kwadronaut's avatar kwadronaut :speech_balloon:
Browse files

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
parent 18db08c9
No related branches found
No related tags found
1 merge request!129Bug: jessie apt keys stable/experimental/staging
......@@ -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'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment