mirror of
https://github.com/jbowdre/vagrant-saltlab.git
synced 2024-11-23 14:02:19 +00:00
John Bowdre
2fb3b6e340
- map distros to package names - create users on saltlab minions - ditch cowsay - replace nginx with apache (and pull pkg name from pillar data)
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 %}
|