mirror of
https://github.com/jbowdre/vagrant-saltlab.git
synced 2024-11-26 23:22:17 +00:00
account for vim package name on rhel-based systems
This commit is contained in:
parent
3fac6f3f4c
commit
95e277f0d6
1 changed files with 6 additions and 1 deletions
|
@ -1,5 +1,10 @@
|
||||||
vim:
|
vim:
|
||||||
pkg.installed
|
pkg.installed:
|
||||||
|
{% if grains['os_family'] == 'RedHat'%}
|
||||||
|
- name: vim-enhanced
|
||||||
|
{% else %}
|
||||||
|
- name: vim
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
/etc/vimrc:
|
/etc/vimrc:
|
||||||
file.managed:
|
file.managed:
|
||||||
|
|
Loading…
Reference in a new issue