mirror of
https://github.com/jbowdre/vagrant-saltlab.git
synced 2024-11-27 15:32:17 +00:00
John Bowdre
db9ef4c5d7
- change id to avoid ambiguity with package names - rename module/folder because I'm not going to configure other editors - update references to match
15 lines
258 B
Text
15 lines
258 B
Text
install_vim:
|
|
pkg.installed:
|
|
{% if grains['os_family'] == 'RedHat'%}
|
|
- name: vim-enhanced
|
|
{% else %}
|
|
- name: vim
|
|
{% endif %}
|
|
|
|
/etc/vimrc:
|
|
file.managed:
|
|
- source: salt://vim/vimrc
|
|
- mode: 644
|
|
- user: root
|
|
- group: root
|
|
|