Puppet Class: badstation::development
- Defined in:
- manifests/development.pp
Overview
So developers have special needs.
2 3 4 5 6 7 8 9 10 11 |
# File 'manifests/development.pp', line 2
class badstation::development {
# They want to take credit and blame people
package { 'git': ensure => 'present', }
# They need the right tools to work
include badstation::vim
# And sometimes they like to use bloated things
if($::badstation::x11){
# TODO: Include Eclipse? Kate?
}
}
|