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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2675 - (hide annotations) (download)
Thu Mar 22 15:18:30 2012 UTC (12 years ago) by misc
File size: 750 byte(s)
make puppet-lint happy by breaking long line
1 misc 2499 class common::base_packages {
2     # packages installed everywhere
3 misc 2675 # asked by misc : screen, vim-enhanced, htop, lsof, tcpdump, less,
4     # lvm2, lshw, iotop
5 misc 2499 # asked by nanar : rsync
6     $package_list= ['screen',
7     'vim-enhanced',
8     'htop',
9     'lsof',
10     'tcpdump',
11     'rsync',
12     'less',
13     'lshw',
14     'lvm2',
15     'iotop']
16    
17     if $::arch == 'x86_64' {
18     $package_list += ['mcelog']
19     }
20    
21     package { $package_list: }
22    
23     # removed as it mess up with our policy for password
24     # and is not really used
25     package { 'msec':
26     ensure => 'absent',
27     }
28     }

  ViewVC Help
Powered by ViewVC 1.1.30