Skip to content

Commit

Permalink
(MODULES-8326) - apt-transport-https not ensured properly
Browse files Browse the repository at this point in the history
  • Loading branch information
eimlav committed Dec 6, 2018
1 parent 0dba15a commit 95b1ea2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/source.pp
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
}
# Newer oses, do not need the package for HTTPS transport.
$_transport_https_releases = [ 'wheezy', 'jessie', 'stretch', 'trusty', 'xenial' ]
if $_release in $_transport_https_releases and $location =~ /(?i:^https:\/\/)/ {
if ($_release in $_transport_https_releases or $facts['lsbdistcodename'] in $_transport_https_releases) and $location =~ /(?i:^https:\/\/)/ {
ensure_packages('apt-transport-https')
}
}
Expand Down

0 comments on commit 95b1ea2

Please sign in to comment.