13 lines
491 B
Plaintext
13 lines
491 B
Plaintext
# Installation des repository RPMFUSION
|
|
|
|
{% if grains['os'] == 'Fedora' %}
|
|
{% set FEDORAVER=grains['osmajorrelease'] %}
|
|
{% 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:
|
|
- "{{URLFREE}}"
|
|
- "{{URLNONFREE}}"
|
|
{% endif %} |