From 30791c24820f7c1fd95bb89ef868f76928839ffc Mon Sep 17 00:00:00 2001 From: suraj kumar Date: Sun, 2 Aug 2026 14:41:43 +0530 Subject: [PATCH] fix(cockpit): replace packagekit with cockpit-packagekit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Same reason as previous commit — packagekit is a backend service and not a cockpit component. cockpit-packagekit is the proper frontend app that provides the software update UI inside Cockpit. The split happened upstream in the cockpit packaging repo and is also refferenced in cockpit-project/cockpit#19315. --- archinstall/default_profiles/servers/cockpit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archinstall/default_profiles/servers/cockpit.py b/archinstall/default_profiles/servers/cockpit.py index e3ed51d1..1b3d31f6 100644 --- a/archinstall/default_profiles/servers/cockpit.py +++ b/archinstall/default_profiles/servers/cockpit.py @@ -14,7 +14,7 @@ class CockpitProfile(Profile): @override def packages(self) -> list[str]: # NOTE: udisks2 and packagekit are raw dependenices, not cockpit app components - return ['cockpit', 'cockpit-storaged', 'packagekit'] + return ['cockpit', 'cockpit-storaged', 'cockpit-packagekit'] @property @override