From 6a244eb2c22da8f8b9f48d714fb4eb64a32e3c7a Mon Sep 17 00:00:00 2001 From: suraj kumar Date: Sun, 2 Aug 2026 14:36:29 +0530 Subject: [PATCH] chore(cockpit): annotate outdated package entries in packages() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The current packages list contains udisks2 and packagekit which are low-level dependenices pulled in by cockpit itself. These should not be explicitly listed — the proper cockpit app components should be used instead. Adding a NOTE comment to flag this for the next step. --- archinstall/default_profiles/servers/cockpit.py | 1 + 1 file changed, 1 insertion(+) diff --git a/archinstall/default_profiles/servers/cockpit.py b/archinstall/default_profiles/servers/cockpit.py index 7283bad6..35bf6bef 100644 --- a/archinstall/default_profiles/servers/cockpit.py +++ b/archinstall/default_profiles/servers/cockpit.py @@ -13,6 +13,7 @@ class CockpitProfile(Profile): @property @override def packages(self) -> list[str]: + # NOTE: udisks2 and packagekit are raw dependenices, not cockpit app components return ['cockpit', 'udisks2', 'packagekit'] @property