Parcourir la source

fix(pkg): add inline EPEL repo configuration for Amazon Linux 2

tags/v2.6.0
Imran Iqbal il y a 3 ans
Parent
révision
ae6375cccc
Aucun compte lié à l'adresse e-mail de l'auteur
1 fichiers modifiés avec 16 ajouts et 0 suppressions
  1. +16
    -0
      nginx/pkg.sls

+ 16
- 0
nginx/pkg.sls Voir le fichier

@@ -113,6 +113,22 @@ nginx_zypp_repo:
{% endif %}

{% if salt['grains.get']('os_family') == 'RedHat' %}
{% if salt['grains.get']('osfinger', '') in ['Amazon Linux-2'] %}
nginx_epel_repo:
pkgrepo.managed:
- name: epel
- humanname: Extra Packages for Enterprise Linux 7 - $basearch
- mirrorlist: https://mirrors.fedoraproject.org/metalink?repo=epel-7&arch=$basearch
- enabled: 1
- gpgcheck: 1
- gpgkey: https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7
- failovermethod: priority
- require_in:
- pkg: nginx_install
- watch_in:
- pkg: nginx_install
{% endif %}

nginx_yum_repo:
pkgrepo:
{%- if from_official %}

Chargement…
Annuler
Enregistrer