Fix long lines
This commit is contained in:
parent
5c19fde74f
commit
787390728b
2 changed files with 37 additions and 8 deletions
|
@ -1,24 +1,39 @@
|
|||
---
|
||||
- name: install rpm signing key
|
||||
rpm_key:
|
||||
key: "{{ rpmfusion_free_keyurl }}RPM-GPG-KEY-rpmfusion-free-el-{{ ansible_distribution_major_version }}"
|
||||
key: >
|
||||
{{
|
||||
rpmfusion_free_keyurl + "RPM-GPG-KEY-rpmfusion-free-el-" +
|
||||
ansible_distribution_major_version
|
||||
}}
|
||||
state: present
|
||||
when: 'ansible_distribution != "Fedora"'
|
||||
|
||||
- name: install rpm signing key
|
||||
rpm_key:
|
||||
key: "{{ rpmfusion_free_keyurl }}RPM-GPG-KEY-rpmfusion-free-fedora-2020"
|
||||
key: >
|
||||
{{
|
||||
rpmfusion_free_keyurl + "RPM-GPG-KEY-rpmfusion-free-fedora-2020"
|
||||
}}
|
||||
state: present
|
||||
when: 'ansible_distribution == "Fedora"'
|
||||
|
||||
- name: enable repository
|
||||
package:
|
||||
name: "{{ rpmfusion_free_baseurl }}/el/rpmfusion-free-release-{{ ansible_distribution_major_version }}.noarch.rpm"
|
||||
name: >
|
||||
{{
|
||||
rpmfusion_free_baseurl + "/el/rpmfusion-free-release-" +
|
||||
ansible_distribution_major_version + ".noarch.rpm"
|
||||
}}
|
||||
state: installed
|
||||
when: 'ansible_distribution != "Fedora"'
|
||||
|
||||
- name: enable repository
|
||||
package:
|
||||
name: "{{ rpmfusion_free_baseurl }}/fedora/rpmfusion-free-release-{{ ansible_distribution_version }}.noarch.rpm"
|
||||
name: >
|
||||
{{
|
||||
rpmfusion_free_baseurl + "/fedora/rpmfusion-free-release-" +
|
||||
ansible_distribution_version + ".noarch.rpm"
|
||||
}}
|
||||
state: installed
|
||||
when: 'ansible_distribution == "Fedora"'
|
||||
|
|
|
@ -1,24 +1,38 @@
|
|||
---
|
||||
- name: install rpm signing key
|
||||
rpm_key:
|
||||
key: "{{ rpmfusion_nonfree_keyurl }}RPM-GPG-KEY-rpmfusion-nonfree-el-{{ ansible_distribution_major_version }}"
|
||||
key: >
|
||||
{{
|
||||
rpmfusion_nonfree_keyurl + "RPM-GPG-KEY-rpmfusion-nonfree-el-" +
|
||||
ansible_distribution_major_version
|
||||
}}
|
||||
state: present
|
||||
when: 'ansible_distribution != "Fedora"'
|
||||
|
||||
- name: install rpm signing key
|
||||
rpm_key:
|
||||
key: "{{ rpmfusion_nonfree_keyurl }}RPM-GPG-KEY-rpmfusion-nonfree-fedora-2020"
|
||||
key: >
|
||||
{{
|
||||
rpmfusion_nonfree_keyurl + "RPM-GPG-KEY-rpmfusion-nonfree-fedora-2020"
|
||||
}}
|
||||
state: present
|
||||
when: 'ansible_distribution == "Fedora"'
|
||||
|
||||
- name: enable repository
|
||||
package:
|
||||
name: "{{ rpmfusion_nonfree_baseurl }}/el/rpmfusion-nonfree-release-{{ ansible_distribution_major_version }}.noarch.rpm"
|
||||
name: >
|
||||
{{
|
||||
rpmfusion_nonfree_baseurl + "/el/rpmfusion-nonfree-release-" +
|
||||
ansible_distribution_major_version + ".noarch.rpm"
|
||||
}}
|
||||
state: installed
|
||||
when: 'ansible_distribution != "Fedora"'
|
||||
|
||||
- name: enable repository
|
||||
package:
|
||||
name: "{{ rpmfusion_nonfree_baseurl }}/fedora/rpmfusion-nonfree-release-{{ ansible_distribution_version }}.noarch.rpm"
|
||||
name: >
|
||||
{{
|
||||
rpmfusion_nonfree_baseurl + "/fedora/rpmfusion-nonfree-release-" +
|
||||
ansible_distribution_version + ".noarch.rpm"
|
||||
state: installed
|
||||
when: 'ansible_distribution == "Fedora"'
|
||||
|
|
Loading…
Add table
Reference in a new issue