diff --git a/manifests/swh/apt_config/azure.pp b/manifests/swh/apt_config/azure.pp new file mode 100644 index 0000000..ff03d05 --- /dev/null +++ b/manifests/swh/apt_config/azure.pp @@ -0,0 +1,16 @@ +# azure-specific apt configuration + +class profile::swh::apt_config::azure { + $azure_repository = hiera('swh::apt_config::azure_repository') + ::apt::source {'azure': + comment => 'Azure specific package repository', + location => $azure_repository, + release => $::lsbdistcodename, + repos => 'main', + } + + # XXX: dependency loop between this package and the previous apt source... + package {'debian-azure-archive-keyring': + ensure => installed, + } +}