This repository has been archived on 2024-05-02. You can view files and clone it, but cannot push or open issues or pull requests.
omni-ansible/roles/networkd/tasks/packages.yml

35 lines
985 B
YAML
Raw Normal View History

2019-11-23 19:30:39 +00:00
---
- name: Install networkd on Fedora
when: ansible_distribution == "Fedora"
2019-11-23 19:30:39 +00:00
become: true
dnf:
state: latest
name:
- systemd-resolved
- systemd-networkd
- name: Install networkd on CentOS 7
when: ansible_distribution == "CentOS" and ansible_distribution_major_version == "7"
become: true
yum:
state: latest
name:
- systemd-resolved
- systemd-networkd
- name: Install networkd on CentOS 8
when: ansible_distribution == "CentOS" and ansible_distribution_major_version == "8"
become: true
block:
- name: Install this super-legitimate and definitely vetted COPR repo
shell:
creates: /etc/yum.repos.d/_copr:copr.fedorainfracloud.org:fschwarz:systemd-networkd.repo
cmd: dnf copr enable fschwarz/systemd-networkd
warn: false
- name: Install networkd
dnf:
state: latest
name:
# This now comes from aforementioned very good COPR repo
- systemd-networkd