13 lines
559 B
Plaintext
13 lines
559 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|string + '.noarch.rpm' %}
|
|
{% set URLNONFREE=URLROOT + '/nonfree/fedora/rpmfusion-nonfree-release-' + FEDORAVER|string + '.noarch.rpm' %}
|
|
Installons les repos RPM Fusion :
|
|
pkg.installed:
|
|
- sources:
|
|
- rpmfusion-free-release: "{{URLFREE}}"
|
|
- rpmfusion-nonfree-release: "{{URLNONFREE}}"
|
|
{% endif %} |