diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-02-03 13:24:19 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-02-03 13:24:19 +0100 |
commit | 9002911770331702cf7af1fbeeddeb113d1a1a63 (patch) | |
tree | 8ea1c94bad83aea073674df62df85cd2027d12aa /code | |
parent | a3d09bd3a3c8aa462fd38d4b3eb6c7f67ee326db (diff) | |
download | puppet.DEV-9002911770331702cf7af1fbeeddeb113d1a1a63.tar.gz puppet.DEV-9002911770331702cf7af1fbeeddeb113d1a1a63.tar.bz2 puppet.DEV-9002911770331702cf7af1fbeeddeb113d1a1a63.zip |
site.pp: Enable /debian-security URLs as used in bullseye and later, use same apt_origins for all systems on the network.
Diffstat (limited to 'code')
-rw-r--r-- | code/environments/production/manifests/site.pp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/code/environments/production/manifests/site.pp b/code/environments/production/manifests/site.pp index 514ac8b..0d0009c 100644 --- a/code/environments/production/manifests/site.pp +++ b/code/environments/production/manifests/site.pp @@ -3,8 +3,9 @@ include apt $apt_origins = [ 'origin=Debian,n=${distro_codename}', 'origin=Debian,n=${distro_codename}-updates', - 'origin=Debian,n=${distro_codename},l=Debian-Security', - 'origin=IT-Zukunft Schule,n=${distro_codename},l=IT-Zukunft Schule', + 'origin=Debian,n=${distro_codename},label=Debian-Security', + 'origin=Debian,n=${distro_codename}-security,label=Debian-Security', + 'origin=IT-Zukunft Schule,n=${distro_codename},label=IT-Zukunft Schule', ] class ssh_pubkeys_admins { |