From 4362ebbfcd0c008b882d093fc01806de93e145f5 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Sun, 28 Jun 2015 13:26:28 -0400 Subject: [PATCH] Use vim-enhanced on centos Turns out vim-minimal is so minimal it does not install the vim symlink. vim-enhanced does - and has the added benefit of not instaling gnome libs. Change-Id: I3f13c84dc1aacc42cf6ada119d8ea5d2ff5a5dd0 --- modules/openstack_project/manifests/params.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/openstack_project/manifests/params.pp b/modules/openstack_project/manifests/params.pp index ac370d2b0f..cb72e1ae85 100644 --- a/modules/openstack_project/manifests/params.pp +++ b/modules/openstack_project/manifests/params.pp @@ -6,7 +6,7 @@ class openstack_project::params { case $::osfamily { 'RedHat': { $packages = ['puppet', 'wget'] - $user_packages = ['emacs-nox', 'vim-minimal'] + $user_packages = ['emacs-nox', 'vim-enhanced'] $update_pkg_list_cmd = '' $login_defs = 'puppet:///modules/openstack_project/login.defs.redhat' }