From 5e1a2fd439e7782a377fb9f22aa8f5efb7412c75 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Wed, 7 Aug 2024 22:18:47 -0300 Subject: Fix: apt: manage /etc/apt/preferences --- manifests/subsystem/apt.pp | 12 ++++++++++++ templates/apt/Debian.preferences.erb | 27 +++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 templates/apt/Debian.preferences.erb diff --git a/manifests/subsystem/apt.pp b/manifests/subsystem/apt.pp index d2d531d..2dcbc26 100644 --- a/manifests/subsystem/apt.pp +++ b/manifests/subsystem/apt.pp @@ -57,6 +57,18 @@ class nodo::subsystem::apt( }, } + file { '/etc/apt/preferences': + ensure => present, + owner => root, + group => root, + mode => '0644', + require => [ File['/etc/apt/apt.conf.d/1000-force-ipv4-transport'], Package['apt-transport-https'] ], + content => $ensure ? { + 'present' => template("nodo/apt/${::operatingsystem}.preferences.erb"), + default => undef, + }, + } + # We have /var/log/dpkg.log, so we do not need to rotate /var/log/upgrade.log $log = ">> /var/log/upgrade.log 2>&1" $apt = '/usr/bin/apt-get' diff --git a/templates/apt/Debian.preferences.erb b/templates/apt/Debian.preferences.erb new file mode 100644 index 0000000..63729ff --- /dev/null +++ b/templates/apt/Debian.preferences.erb @@ -0,0 +1,27 @@ +# This file is managed by puppet +# all local modifications will be overwritten + +Explanation: Debian <%= scope.lookupvar('::lsbdistcodename') %> +Package: * +Pin: release o=Debian,n=<%= scope.lookupvar('::lsbdistcodename') %> +Pin-Priority: 990 + +Explanation: Debian <%= scope.lookupvar('::lsbdistcodename') %>-updates +Package: * +Pin: release o=Debian,n=<%= scope.lookupvar('::lsbdistcodename') %>-updates +Pin-Priority: 990 + +Explanation: Debian <%= scope.lookupvar('::lsbdistcodename') %>-security +Package: * +Pin: release o=Debian,n=<%= scope.lookupvar('::lsbdistcodename') %>-security +Pin-Priority: 990 + +Explanation: Debian sid +Package: * +Pin: release o=Debian,n=sid +Pin-Priority: 1 + +Explanation: Debian fallback +Package: * +Pin: release o=Debian +Pin-Priority: -10 -- cgit v1.2.3