vagrant-saltlab/srv/salt/vim/uninstall.sls
John Bowdre db9ef4c5d7 vim state tweaks
- change id to avoid ambiguity with package names
- rename module/folder because I'm not going to configure other editors
- update references to match
2023-03-24 16:06:42 -05:00

10 lines
173 B
Text

uninstall_vim:
pkg.removed:
{% if grains['os_family'] == 'RedHat'%}
- name: vim-enhanced
{% else %}
- name: vim
{% endif %}
/etc/vimrc:
file.absent