Debug and fix networkd role to work with cent8

This commit is contained in:
Ethan Paul 2019-11-23 19:18:40 -05:00
parent 8f839a4944
commit b3f9e8fc80
4 changed files with 31 additions and 9 deletions

View File

@ -26,8 +26,8 @@
become: true
template:
src: netdev.j2
dest: "/etc/systemd/network/{{ item.key }}.netdev"
loop: "{{ networking | dict2items }}"
dest: "/etc/systemd/network/{{ item.0.key + '.' + item.1 }}.netdev"
loop: "{{ networking | dict2items | subelements('value.vlans', true) }}"
- import_tasks: services.yml

View File

@ -1,8 +1,34 @@
---
- name: Install systemd-networkd
- name: Install networkd on Fedora
when: ansible_distribution == "Fedora"
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

View File

@ -5,7 +5,6 @@
name: "{{ item }}"
enabled: false
loop:
- network
- NetworkManager
- NetworkManager-wait-online
@ -26,7 +25,6 @@
name: "{{ item }}"
state: stopped
loop:
- network
- NetworkManager
- NetworkManager-wait-online

View File

@ -1,11 +1,9 @@
# ANSIBLE MANAGED FILE - DO NOT EDIT
[NetDev]
Name={{ item.key }}
Name={{ item.0.key }}
Kind=vlan
{% if item.value['kind'] == 'vlan' %}
[VLAN]
Id={{ item.value['vlan'] }}
{% endif %}
Id={{ item.1 }}
# EOF