Commit fc10deab authored by Rafael Monnerat's avatar Rafael Monnerat

playbook: Add support setup on Fedora 26

parent 01f0810c
- yum: name=libselinux-python state=present update_cache=yes
when: ansible_distribution == "Fedora" and ansible_distribution_major_version == "26"
......@@ -14,6 +14,7 @@
- file: path=/etc/apt/sources.list.d/re6stnet.list state=absent
when: ansible_distribution == "Debian"
- include: fedora_init.yml
- name: Install Debian 9 repository key
apt_key: url={{ base_open_build_url }}/Debian_9.0/Release.key state=present
......@@ -95,4 +96,14 @@
rpm_key: state=present key=http://download.opensuse.org/repositories/home:/VIFIBnexedi/CentOS_CentOS-6/repodata/repomd.xml.key
when: ansible_distribution == "CentOS" and ansible_distribution_major_version == "6"
- name: Install Fedora 26 Repository
get_url: url=http://download.opensuse.org/repositories/home:/VIFIBnexedi/Fedora_26/home:VIFIBnexedi.repo dest=/etc/yum.repos.d/slapos.repo mode=0440
when: ansible_distribution == "Fedora" and ansible_distribution_major_version == "26"
- name: Install Fedora 26 RPM Key
rpm_key: state=present key=http://download.opensuse.org/repositories/home:/VIFIBnexedi/Fedora_26/repodata/repomd.xml.key
when: ansible_distribution == "Fedora" and ansible_distribution_major_version == "26"
- include: debian9_aptconf.yml
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment