X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fbackports.pp;h=94ed643ba117fb6e7645a831d323f3429eda107a;hb=36fcde96baea324fd02efd99da4d4590928216fa;hp=1b9cabbaf10ff062d868f86f4dd6331380ee5b4b;hpb=a2af17f31baf17817c0acf2820100f5ee4e6ae47;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/backports.pp b/manifests/backports.pp index 1b9cabb..94ed643 100644 --- a/manifests/backports.pp +++ b/manifests/backports.pp @@ -45,12 +45,16 @@ # Specifies a pin priority for the backports. Valid options: a number or string to be passed to the `id` parameter of the `apt::pin` defined # type, or a hash of `parameter => value` pairs to be passed to `apt::pin`'s corresponding parameters. # +# @param include +# Specifies whether to include 'deb' or 'src', or both. +# class apt::backports ( 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, + Optional[Variant[Hash]] $include = {}, ){ include apt @@ -102,6 +106,7 @@ class apt::backports ( location => $_location, release => $_release, repos => $_repos, + include => $include, key => $_key, pin => $_pin, }