Add nginx repo for RedHat family

This commit is contained in:
Zijad Purkovic 2015-04-21 12:16:19 +02:00
parent 313185674c
commit 7f95a5a9db

View File

@ -48,3 +48,21 @@ nginx_zypp_repo:
- watch_in: - watch_in:
- pkg: nginx_install - pkg: nginx_install
{% endif %} {% endif %}
{% if salt['grains.get']('os_family') == 'RedHat' %}
nginx_yum_repo:
pkgrepo.managed:
- name: nginx
- humanname: nginx repo
{%- if salt['grains.get']('os') == 'CentOS' %}
- baseurl: 'http://nginx.org/packages/centos/$releasever/$basearch/'
{%- else %}
- baseurl: 'http://nginx.org/packages/rhel/$releasever/$basearch/'
{%- endif %}
- gpgcheck: False
- enabled: True
- require_in:
- pkg: nginx_install
- watch_in:
- pkg: nginx_install
{% endif %}