From 8d2ca7636d8055b1d82cca47c22c3b08d76e86b9 Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Tue, 9 Jul 2024 16:46:39 +0200 Subject: [PATCH] settings: call removed plugins "obsolete" not "deprecated" The ifcfg-rh plugin is deprecated, yet still present. Call the removed plugins something different. https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/1989 --- src/core/settings/nm-settings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/settings/nm-settings.c b/src/core/settings/nm-settings.c index 7fc202988..80b1f4b21 100644 --- a/src/core/settings/nm-settings.c +++ b/src/core/settings/nm-settings.c @@ -3520,7 +3520,7 @@ load_plugins(NMSettings *self, const char *const *plugins, GError **error) } if (NM_IN_STRSET(pname, "ifcfg-suse", "ifnet", "ibft", "no-ibft")) { - _LOGW("skipping deprecated plugin %s", pname); + _LOGW("skipping obsolete plugin %s", pname); continue; }