Add vim to the list of explicit things on servers

It used to be on the base images, but now is no longer on rackspace
performance nodes. Add it back in to make Monty less unhappy.

Change-Id: I11b691a1a40515336c270edd2dd9e7815d7f8785
This commit is contained in:
Monty Taylor 2014-04-28 09:06:34 -07:00
parent 783cf361dc
commit 6269e09544

View File

@ -6,12 +6,12 @@ class openstack_project::params {
case $::osfamily {
'RedHat': {
$packages = ['puppet', 'wget']
$user_packages = ['byobu', 'emacs-nox']
$user_packages = ['byobu', 'emacs-nox', 'vim-minimal']
$update_pkg_list_cmd = ''
}
'Debian': {
$packages = ['puppet', 'wget']
$user_packages = ['byobu', 'emacs23-nox']
$user_packages = ['byobu', 'emacs23-nox', 'vim-nox']
$update_pkg_list_cmd = 'apt-get update >/dev/null 2>&1;'
}
default: {