mirror of
https://github.com/linux-system-roles/network.git
synced 2026-01-23 02:15:17 +00:00
Add support for 802.1x wired connections (EAP-TLS only)
Only EAP-TLS method is supported. Must use NetworkManager as the network_provider. Also fixed bug in do_connections_validate_nm() function.
This commit is contained in:
parent
d32f4e5a7b
commit
4af8f23955
22 changed files with 961 additions and 7 deletions
|
|
@ -32,6 +32,17 @@
|
|||
when:
|
||||
- network_provider == "nm"
|
||||
|
||||
# If any 802.1x connections are used, the wpa_supplicant
|
||||
# service is required to be running
|
||||
- name: Enable and start wpa_supplicant
|
||||
service:
|
||||
name: wpa_supplicant
|
||||
state: started
|
||||
enabled: true
|
||||
when:
|
||||
- network_provider == "nm"
|
||||
- wpa_supplicant_required
|
||||
|
||||
- name: Enable network service
|
||||
service:
|
||||
name: "{{ network_service_name }}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue