diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-02-01 15:28:38 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-02-01 15:28:38 +0100 |
commit | fb73b6127f7a9153f1c196a6fbe5c27d4eaeb855 (patch) | |
tree | 1f32505e7bf8d6ad469d945472fae3b2282a6d8c | |
parent | 79cc0ec527a74650605d8c80fc608b64b2b76b5f (diff) | |
download | puppet.SGM-fb73b6127f7a9153f1c196a6fbe5c27d4eaeb855.tar.gz puppet.SGM-fb73b6127f7a9153f1c196a6fbe5c27d4eaeb855.tar.bz2 puppet.SGM-fb73b6127f7a9153f1c196a6fbe5c27d4eaeb855.zip |
site.pp: Use security origins appropriate for Debian bullseye and later.
-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 ebd0066..ac8acd2 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 { |