summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2022-02-01 13:10:53 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2022-02-01 13:10:53 +0100
commita128d4d84df12c627bac321753da7026bee624a8 (patch)
tree48780780781435a8f2e16f243140a10d7faadd14
parentc97aa739ae3d274cd1d41a2d36e3dc264101444d (diff)
downloadpuppet.FWSECK-a128d4d84df12c627bac321753da7026bee624a8.tar.gz
puppet.FWSECK-a128d4d84df12c627bac321753da7026bee624a8.tar.bz2
puppet.FWSECK-a128d4d84df12c627bac321753da7026bee624a8.zip
site.pp: Enable <distro-codename>-security origin.
-rw-r--r--code/environments/production/manifests/site.pp5
1 files changed, 3 insertions, 2 deletions
diff --git a/code/environments/production/manifests/site.pp b/code/environments/production/manifests/site.pp
index 81d8de4..abc625e 100644
--- a/code/environments/production/manifests/site.pp
+++ b/code/environments/production/manifests/site.pp
@@ -3,8 +3,9 @@
$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 apt_via_squid_deb_proxy {