Move migration from IWD to WPA-supplicant to role
To ensure that migration only runs when EAP-TLS certificate is installed correctly
This commit is contained in:
parent
f965f4466c
commit
4dafbd8b85
2 changed files with 16 additions and 25 deletions
|
@ -94,3 +94,19 @@
|
|||
802-1x.private-key /etc/ssl/private/{{ wlan_ssid }}.key
|
||||
802-1x.private-key-password dummy
|
||||
changed_when: false
|
||||
|
||||
# Temporary fix used to migrate from IWD to WPA-Supplicant - Will be removed later
|
||||
- name: Enable wpa-supplicant
|
||||
ansible.builtin.systemd:
|
||||
name: wpa_supplicant.service
|
||||
enabled: true
|
||||
|
||||
- name: Disable iwd
|
||||
ansible.builtin.systemd:
|
||||
name: iwd.service
|
||||
enabled: false
|
||||
|
||||
- name: Remove deprecated NetworkManager config
|
||||
ansible.builtin.blockinfile:
|
||||
path: /etc/NetworkManager/NetworkManager.conf
|
||||
state: absent
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue