diff options
-rw-r--r-- | manifests/subsystem/apt.pp | 12 | ||||
-rw-r--r-- | templates/apt/Debian.preferences.erb | 27 |
2 files changed, 39 insertions, 0 deletions
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 |