2007-06-25 11:50:19 +02:00
|
|
|
# apt.pp - common components and defaults for handling apt
|
|
|
|
# Copyright (C) 2007 David Schmitt <david@schmitt.edv-bus.at>
|
|
|
|
# See LICENSE for the full license granted to you.
|
|
|
|
#
|
|
|
|
# With hints from
|
|
|
|
# Micah Anderson <micah@riseup.net>
|
|
|
|
# * backports key
|
|
|
|
|
|
|
|
class apt {
|
|
|
|
|
|
|
|
# See README
|
|
|
|
$real_apt_clean = $apt_clean ? {
|
|
|
|
'' => 'auto',
|
|
|
|
default => $apt_clean,
|
|
|
|
}
|
|
|
|
|
2007-07-03 12:20:19 +02:00
|
|
|
package {
|
|
|
|
[apt, dselect]: ensure => installed,
|
|
|
|
}
|
|
|
|
|
2007-06-25 11:50:19 +02:00
|
|
|
# a few templates need lsbdistcodename
|
|
|
|
include assert_lsbdistcodename
|
|
|
|
|
|
|
|
config_file {
|
|
|
|
# include main, security and backports
|
|
|
|
# additional sources could be included via an array
|
|
|
|
"/etc/apt/sources.list":
|
|
|
|
content => template("apt/sources.list.erb"),
|
|
|
|
require => Exec[assert_lsbdistcodename];
|
|
|
|
# this just pins unstable and testing to very low values
|
|
|
|
"/etc/apt/preferences":
|
|
|
|
content => template("apt/preferences.erb"),
|
|
|
|
# use File[apt_config] to reference a completed configuration
|
|
|
|
# See "The Puppet Semaphor" 2007-06-25 on the puppet-users ML
|
|
|
|
alias => apt_config,
|
|
|
|
# only update together
|
|
|
|
require => File["/etc/apt/sources.list"];
|
|
|
|
# little default settings which keep the system sane
|
|
|
|
"/etc/apt/apt.conf.d/from_puppet":
|
|
|
|
content => "APT::Get::Show-Upgraded true;\nDSelect::Clean $real_apt_clean;\n",
|
|
|
|
before => File[apt_config];
|
|
|
|
}
|
|
|
|
|
2007-07-14 11:42:37 +02:00
|
|
|
$apt_base_dir = "/var/lib/puppet/modules/apt"
|
2007-06-25 11:50:19 +02:00
|
|
|
file {
|
|
|
|
# remove my legacy files
|
|
|
|
[ "/etc/apt/backports.key", "/etc/apt/apt.conf.d/local-conf" ]:
|
|
|
|
ensure => removed;
|
|
|
|
# create new modules dir
|
2007-07-14 11:42:37 +02:00
|
|
|
$apt_base_dir: ensure => directory;
|
2007-06-25 11:50:19 +02:00
|
|
|
# watch apt.conf.d
|
|
|
|
"/etc/apt/apt.conf.d": ensure => directory, checksum => mtime;
|
|
|
|
}
|
|
|
|
|
|
|
|
# suppress annoying help texts of dselect
|
|
|
|
line { dselect_expert:
|
|
|
|
file => "/etc/dpkg/dselect.cfg",
|
|
|
|
line => "expert",
|
|
|
|
ensure => present,
|
|
|
|
}
|
|
|
|
|
|
|
|
exec {
|
2007-06-25 12:16:59 +02:00
|
|
|
# "&& sleep 1" is workaround for older(?) clients
|
2007-07-03 12:20:19 +02:00
|
|
|
"/usr/bin/dselect update && sleep 1 #on refresh":
|
2007-06-25 11:50:19 +02:00
|
|
|
refreshonly => true,
|
|
|
|
subscribe => [ File["/etc/apt/sources.list"],
|
|
|
|
File["/etc/apt/preferences"], File["/etc/apt/apt.conf.d"],
|
|
|
|
File[apt_config] ];
|
2007-07-03 12:20:19 +02:00
|
|
|
"/usr/bin/dselect update && /usr/bin/apt-get autoclean #hourly":
|
2007-06-25 11:50:19 +02:00
|
|
|
require => [ File["/etc/apt/sources.list"],
|
|
|
|
File["/etc/apt/preferences"], File[apt_config] ],
|
|
|
|
# Another Semaphor for all packages to reference
|
|
|
|
alias => apt_updated;
|
|
|
|
}
|
|
|
|
|
|
|
|
case $lsbdistcodename {
|
|
|
|
etch: {
|
|
|
|
## This package should really always be current
|
2007-07-12 20:30:40 +02:00
|
|
|
package {
|
|
|
|
[ "debian-archive-keyring", "debian-backports-keyring" ]:
|
|
|
|
ensure => latest,
|
2007-08-01 13:25:58 +02:00
|
|
|
require => [ File[apt_config], Exec["backports_key"] ],
|
2007-07-12 20:30:40 +02:00
|
|
|
}
|
2007-06-25 11:50:19 +02:00
|
|
|
|
|
|
|
# This key was downloaded from
|
|
|
|
# http://backports.org/debian/archive.key
|
2007-07-11 13:59:15 +02:00
|
|
|
# and is needed to bootstrap the backports trustpath
|
2007-07-14 11:42:37 +02:00
|
|
|
file { "${apt_base_dir}/backports.org.key":
|
2007-06-25 11:50:19 +02:00
|
|
|
source => "puppet://$servername/apt/backports.org.key",
|
|
|
|
mode => 0444, owner => root, group => root,
|
|
|
|
before => File[apt_config],
|
|
|
|
}
|
2007-07-14 11:42:37 +02:00
|
|
|
exec { "/usr/bin/apt-key add ${apt_base_dir}/backports.org.key":
|
2007-08-01 13:25:58 +02:00
|
|
|
alias => "backports_key",
|
2007-06-25 11:50:19 +02:00
|
|
|
refreshonly => true,
|
2007-07-14 11:42:37 +02:00
|
|
|
subscribe => File["${apt_base_dir}/backports.org.key"],
|
2007-06-25 11:50:19 +02:00
|
|
|
before => File[apt_config],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|