diff options
author | intrigeri <intrigeri@boum.org> | 2010-10-17 02:11:41 +0200 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2010-10-17 02:11:41 +0200 |
commit | e3c8c1b6afc5137be6e15850e9ddfb33894765a2 (patch) | |
tree | 195cdec37e255ae0aed9f6e5c8e480f204218357 /manifests/init.pp | |
parent | b4d6f30faee423c5b544a1d44724890dcb5418a8 (diff) |
Bring /etc/apt/apt.conf.d/99from_puppet to init.
APT configuration has (unfortunately) nothing to do with APT preferences.
Diffstat (limited to 'manifests/init.pp')
-rw-r--r-- | manifests/init.pp | 7 |
1 files changed, 7 insertions, 0 deletions
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 } |