summaryrefslogtreecommitdiff
path: root/manifests/default_preferences.pp
diff options
context:
space:
mode:
authornadir <nadir-technik@nadir.org>2010-10-22 19:17:57 +0200
committernadir <nadir-technik@nadir.org>2010-10-22 19:17:57 +0200
commit851d20a7b621345516e8a8cd83d0970a5ea0521c (patch)
tree42847383584e518b3917d55d31b39ccafbee585c /manifests/default_preferences.pp
parenteae01000c1db8bcfa7de17b2a9a8370289b801bc (diff)
parente2ac1b3d8d1713c81c83a695b776dec1c00d2d47 (diff)
merged with immerda/master
Diffstat (limited to 'manifests/default_preferences.pp')
-rw-r--r--manifests/default_preferences.pp16
1 files changed, 0 insertions, 16 deletions
diff --git a/manifests/default_preferences.pp b/manifests/default_preferences.pp
deleted file mode 100644
index 671abdd..0000000
--- a/manifests/default_preferences.pp
+++ /dev/null
@@ -1,16 +0,0 @@
-class apt::default_preferences {
- config_file {
- # 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/99from_puppet":
- content => "APT::Get::Show-Upgraded true;\nDSelect::Clean $real_apt_clean;\n",
- before => Config_file[apt_config];
- }
-}