aboutsummaryrefslogtreecommitdiff
path: root/manifests/dselect.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2009-10-30 20:20:42 +0100
committermh <mh@immerda.ch>2009-10-30 20:20:42 +0100
commitb0e0f720d0f0480c96c377bde6f46a2d8820f646 (patch)
tree2438d4c1a636e8c81ee5f12320a5d5c8d3a8ce03 /manifests/dselect.pp
parent87d2fe06d1b91c76cdc6ef59cf4d0c48db3da134 (diff)
downloadpuppet-apt-b0e0f720d0f0480c96c377bde6f46a2d8820f646.tar.gz
puppet-apt-b0e0f720d0f0480c96c377bde6f46a2d8820f646.tar.bz2
add refactored files
Diffstat (limited to 'manifests/dselect.pp')
-rw-r--r--manifests/dselect.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/dselect.pp b/manifests/dselect.pp
new file mode 100644
index 0000000..fb138da
--- /dev/null
+++ b/manifests/dselect.pp
@@ -0,0 +1,10 @@
+class apt::dselect {
+ # suppress annoying help texts of dselect
+ line { dselect_expert:
+ file => "/etc/dpkg/dselect.cfg",
+ line => "expert",
+ ensure => present,
+ }
+
+ package { dselect: ensure => installed }
+}