Browse Source

Add nginx repo for RedHat family

susefix
Zijad Purkovic 9 years ago
parent
commit
7f95a5a9db
1 changed files with 18 additions and 0 deletions
  1. +18
    -0
      nginx/ng/install.sls

+ 18
- 0
nginx/ng/install.sls View File

@@ -48,3 +48,21 @@ nginx_zypp_repo:
- watch_in:
- pkg: nginx_install
{% 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 %}

Loading…
Cancel
Save