mirror of
https://github.com/jbowdre/vagrant-saltlab.git
synced 2024-12-18 15:22:18 +00:00
John Bowdre
a58f8fcc1f
- move content to be served via gitfs to salt_content/gitfs - create structure to hold local content at salt_content/local - configure Vagrant to rsync salt_content/local to /srv on Salt master
11 lines
214 B
Text
11 lines
214 B
Text
pkgs:
|
|
{% if grains['os_family'] == 'RedHat' %}
|
|
apache: httpd
|
|
vim: vim-enhanced
|
|
{% elif grains['os_family'] == 'Debian' %}
|
|
apache: apache2
|
|
vim: vim
|
|
{% else %}
|
|
apache: apache
|
|
vim: vim
|
|
{% endif %}
|