Vagrant: Introduce base profile and install vim

This happened too often with `vim: not found`, so I've patched it.
This commit is contained in:
Michael Friedrich 2018-02-14 10:48:01 +01:00
parent 79c12385ae
commit a87652dcd1
2 changed files with 6 additions and 0 deletions

View File

@ -6,6 +6,7 @@ node default {
class { 'epel':
stage => repositories,
}
include base
include icinga2_dev
include icingaweb2_dev
include motd

View File

@ -0,0 +1,5 @@
class base {
package { [ 'vim-enhanced', 'bash-completion' ]:
ensure => latest,
}
}