/[adm]/puppet/deployment/common/manifests/base_packages.pp
ViewVC logotype

Contents of /puppet/deployment/common/manifests/base_packages.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2826 - (show annotations) (download)
Tue Sep 4 08:25:21 2012 UTC (11 years, 7 months ago) by boklm
File size: 798 byte(s)
remove watchdog because package cannot install
1 class common::base_packages {
2 # packages installed everywhere
3 # asked by misc: screen, vim-enhanced, htop, lsof, tcpdump, less,
4 # lvm2, lshw, iotop
5 # asked by nanar: rsync
6 # asked bu dams: watchdog, wget
7 $package_list= ['screen',
8 'vim-enhanced',
9 'htop',
10 'lsof',
11 'tcpdump',
12 'rsync',
13 'less',
14 'lshw',
15 'lvm2',
16 'iotop',
17 'wget']
18
19 if $::arch == 'x86_64' {
20 $package_list += ['mcelog']
21 }
22
23 package { $package_list: }
24
25 # removed as it mess up with our policy for password
26 # and is not really used
27 package { 'msec':
28 ensure => 'absent',
29 }
30 }

  ViewVC Help
Powered by ViewVC 1.1.30