variabilisation

This commit is contained in:
Iwan Clément
2018-11-17 15:56:40 +01:00
parent 23fc653555
commit 6f37783bab

View File

@@ -1,8 +1,13 @@
# Installation des repository RPMFUSION
{% if grains['os'] == 'Fedora' %}
{% set FEDORAVER=grains['osmajorrelease'] %}
Installons les repos RPM Fusio :
{% set URLROOT='https://download1.rpmfusion.org'%}
{% set URLFREE=URLROOT + '/free/fedora/rpmfusion-free-release-' + FEDORAVER + '.noarch.rpm' %}
{% set URLNONFREE=URLROOT + '/nonfree/fedora/rpmfusion-nonfree-release-' + FEDORAVER + '.noarch.rpm' %}
Installons les repos RPM Fusion :
pkg.installed:
- pkgs:
- "https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-{{FEDORAVER}}.noarch.rpm"
- "https://download1.rpmfusion.org/free/fedora/rpmfusion-nonfree-release-{{FEDORAVER}}.noarch.rpm"
- "{{URLFREE}}"
- "{{URLNONFREE}}"
{% endif %}