From f2d78e5993ab28edccad95da1b4451a2f628d0cc Mon Sep 17 00:00:00 2001 From: suraj kumar Date: Sun, 2 Aug 2026 14:37:08 +0530 Subject: [PATCH] fix(cockpit): replace udisks2 with cockpit-storaged The cockpit package was split upstream into seperate app components. udisks2 is a low-level D-Bus service (a dependency), whereas cockpit-storaged is the actual Cockpit UI component for storage management. Installing the app component is the correct approach as documented on the Arch Wiki and the cockpit package page. --- 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 35bf6bef..e3ed51d1 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', 'udisks2', 'packagekit'] + return ['cockpit', 'cockpit-storaged', 'packagekit'] @property @override