diff --git a/manifests/swh/apt_config.pp b/manifests/swh/apt_config.pp index 4de7782..ec790e7 100644 --- a/manifests/swh/apt_config.pp +++ b/manifests/swh/apt_config.pp @@ -1,21 +1,17 @@ # Base class for Software Heritage-specific apt configuration class profile::swh::apt_config { include ::apt - class {'::apt::backports': - pin => 100, - } - $swh_mirror_location = hiera('swh::debian_mirror::location') ::apt::source {'softwareheritage': comment => 'Software Heritage specific package repository', location => $swh_mirror_location, release => $::lsbdistcodename, repos => 'main', allow_unsigned => true, } Apt::Source <||> ~> Exec['apt_update'] -> Package <| provider == 'apt' |> }