Merge pull request #3363 from Icinga/feature/vagrant-base-profile-install-vim

Vagrant: Introduce base profile and install vim
This commit is contained in:
lippserd 2018-02-21 09:18:18 +01:00 committed by GitHub
commit 85f010126c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

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

View File

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