Quellcode durchsuchen

ng.install: subscribe to repo only if install_from_repo variable is set to true

tags/v0.55.0
Krzysztof Pawłowski vor 9 Jahren
Ursprung
Commit
1c1d338359
1 geänderte Dateien mit 6 neuen und 1 gelöschten Zeilen
  1. +6
    -1
      nginx/ng/install.sls

+ 6
- 1
nginx/ng/install.sls Datei anzeigen

@@ -51,7 +51,12 @@ nginx_zypp_repo:

{% if salt['grains.get']('os_family') == 'RedHat' %}
nginx_yum_repo:
pkgrepo.managed:
pkgrepo:
{%- if nginx.install_from_repo %}
- managed
{%- else %}
- absent
{%- endif %}
- name: nginx
- humanname: nginx repo
{%- if salt['grains.get']('os') == 'CentOS' %}

Laden…
Abbrechen
Speichern