Skip to content

Instantly share code, notes, and snippets.

@spiette
Created January 20, 2014 20:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save spiette/8527921 to your computer and use it in GitHub Desktop.
Save spiette/8527921 to your computer and use it in GitHub Desktop.
Very very [...] basic desktop setup manifest
case $::osfamily {
'RedHat': {
$vim = 'vim-enhanced'
$mtr = 'mtr'
}
'Debian': {
$vim = 'vim'
$mtr = 'mtr-tiny'
}
default: {
fail('Unsupported OS')
}
}
package { [
'inkscape',
'dstat',
'screen',
'tmux',
$mtr,
'git',
'mc',
$vim,
]:
ensure => present,
}
~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment