X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fbackports.pp;h=6a7e87c566da151964a95afc6e9ccf531a12705d;hb=125a45c0ff330f680508f8142a7a81401e6bbf8b;hp=f7e85f59ed9744fdaaaa8ce7b46d9b788e23ce60;hpb=418820adf36d5897bf7069dfa62312c3c839604f;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/backports.pp b/manifests/backports.pp index f7e85f5..6a7e87c 100644 --- a/manifests/backports.pp +++ b/manifests/backports.pp @@ -1,34 +1,29 @@ +# Defining backports for the apt class class apt::backports ( - $location = undef, - $release = undef, - $repos = undef, - $key = undef, - $pin = 200, + Optional[String] $location = undef, + Optional[String] $release = undef, + Optional[String] $repos = undef, + Optional[Variant[String, Hash]] $key = undef, + Optional[Variant[Integer, String, Hash]] $pin = 200, ){ if $location { - validate_string($location) $_location = $location } if $release { - validate_string($release) $_release = $release } if $repos { - validate_string($repos) $_repos = $repos } if $key { - unless is_hash($key) { - validate_string($key) - } $_key = $key } - if ($::apt::xfacts['lsbdistid'] == 'debian' or $::apt::xfacts['lsbdistid'] == 'ubuntu') { + if ($facts['lsbdistid'] == 'Debian' or $facts['lsbdistid'] == 'Ubuntu') { unless $location { $_location = $::apt::backports['location'] } unless $release { - $_release = "${::apt::xfacts['lsbdistcodename']}-backports" + $_release = "${facts['lsbdistcodename']}-backports" } unless $repos { $_repos = $::apt::backports['repos'] @@ -42,9 +37,9 @@ class apt::backports ( } } - if is_hash($pin) { + if $pin =~ Hash { $_pin = $pin - } elsif is_numeric($pin) or is_string($pin) { + } elsif $pin =~ Numeric or $pin =~ String { # apt::source defaults to pinning to origin, but we should pin to release # for backports $_pin = {