chore(cockpit): annotate outdated package entries in packages()

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.
This commit is contained in:
suraj kumar 2026-08-02 14:36:29 +05:30
parent 2ce0f0b4b1
commit 6a244eb2c2
1 changed files with 1 additions and 0 deletions

View File

@ -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