Puppet Class: badstation::essentials
- Defined in:
- manifests/essentials.pp
Overview
BadStations all need some basic essentials:
3 4 5 6 7 8 9 10 11 12 13 14 |
# File 'manifests/essentials.pp', line 3
class badstation::essentials {
package { [
# WGET is a _VERY_ usefull utility
'wget',
# Provide a way of continuing work across sessions:
'tmux',
# Nice replacement for top:
'htop',
]:
ensure => 'latest',
}
}
|