diff --git a/man/NetworkManager.conf.xml b/man/NetworkManager.conf.xml index 5c366423a8..8710628783 100644 --- a/man/NetworkManager.conf.xml +++ b/man/NetworkManager.conf.xml @@ -174,9 +174,7 @@ plugins-=remove-me The internal client is built-in, while other options may require an external DHCP client to be installed. If this key is missing, &NM_CONFIG_DEFAULT_MAIN_DHCP; - is used with a fallback to other suppored clients in this order: - internal, dhcpcd, - dhclient. + is used with a fallback to other supported clients. no-auto-default diff --git a/meson.build b/meson.build index f410687810..43fd88c818 100644 --- a/meson.build +++ b/meson.build @@ -633,7 +633,7 @@ config_dhcp_default = get_option('config_dhcp_default') config_h.set_quoted('NM_CONFIG_DEFAULT_MAIN_DHCP', config_dhcp_default) config_dhcp_clients_enabled = [ 'internal' ] dhcp_summary = '' -foreach client : [ 'dhclient', 'dhcpcd' ] +foreach client : [ 'dhcpcd', 'dhclient' ] client_path = get_option(client) client_enable = (client_path != 'no') if client_enable