aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/default_preferences.pp4
-rw-r--r--manifests/init.pp7
2 files changed, 7 insertions, 4 deletions
diff --git a/manifests/default_preferences.pp b/manifests/default_preferences.pp
index 28471b9..165b364 100644
--- a/manifests/default_preferences.pp
+++ b/manifests/default_preferences.pp
@@ -9,10 +9,6 @@ class apt::default_preferences {
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];
}
}
'ubuntu': {
diff --git a/manifests/init.pp b/manifests/init.pp
index ab90c90..d34c89b 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -103,6 +103,13 @@ class apt {
}
}
+ config_file {
+ # 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];
+ }
+
if $apt_unattended_upgrades {
include apt::unattended_upgrades
}