| name | skill-remove-component |
|---|---|
| description | [Skill] Remove components from Azure Linux. Use when deleting packages, cleaning up unused dependencies, or pruning the distro. Triggers: remove component, delete package, drop component, prune dependency. |
Verify the component exists and understand what it produces:
azldev comp list -p <name> -q -O jsonThen check for all artifacts that need to be removed:
- Component definition —
base/comps/components.toml(inline) orbase/comps/<name>/<name>.comp.toml(dedicated) - Publish-channel references —
base/comps/components-publish-channels.toml(component name incomponent-groups.base-packages.components, plus any per-binary entries inpackage-groups.exceptions-packages.packages) - Lock file —
locks/<name>.lock - Rendered specs —
specs/<first-char>/<name>/ - Other references — image definitions (
base/images/),comps.xml, etc.
- Inline entry: remove
[components.<name>]frombase/comps/components.toml - Dedicated directory: delete
base/comps/<name>/(contains<name>.comp.tomland possibly local spec/sources)
Publishing is configured per component (not per binary subpackage) in base/comps/components-publish-channels.toml. For each component being removed:
- Remove its entry from the
components = [...]array in[component-groups.base-packages]if present (otherwise it inherits the project-widesdkdefault and needs no edit there). - Remove any per-binary carve-outs for its subpackages from
[package-groups.exceptions-packages].packages. Exception lines carry a# srpm: <name>trailing comment — grep that to find them all:
grep "srpm: <name>" base/comps/components-publish-channels.tomlRemove every matching line. When removing many components at once, editing by hand is error-prone — prefer using your editor's multi-cursor or find-and-replace to remove all lines matching the SRPM name.
rm locks/<name>.lockThere is no azldev command for this — manual deletion is the only way.
The preferred approach is to let azldev handle cleanup after removing the component definition:
azldev comp render -a --clean-staleThis re-renders all components and removes spec directories for components that no longer exist. It's slow (renders everything), but is the most reliable method.
For targeted removal when you don't want to re-render everything:
rm -rf specs/<first-char>/<name>/Search for the component name in image definitions, kiwi files, and other config:
grep -rn "<name>" base/images/ base/comps/comps.xml
grep -rn "<name>" --include="*.kiwi" .Kiwi files (*.kiwi) define image package lists — if any subpackage produced by the component is referenced there, it must be removed or replaced before the component can be dropped.
After removal, confirm nothing was missed:
azldev comp list -p <name> -q -O json # should fail with "component not found"
grep -n "\"<name>\"\|srpm: <name>" base/comps/components-publish-channels.toml # should return nothing
ls locks/<name>.lock specs/*/<name>/ 2>/dev/null # should return nothing
grep -rn "<name>" --include="*.kiwi" . # should return nothing- Check for reverse dependencies before removing a component. If other components depend on it (via
BuildRequiresorRequires), removing it will break their builds. - When modifying dependants, check their release calculation. If you disable a feature or remove a
BuildRequiresfrom a dependant component that usesrelease = { calculation = "manual" }, you must also bump its release counter (e.g., increment theazl_releasedefine). Components with automatic release calculation (auto,static,autorelease) handle this via the commit-render-amend cycle, but manual-release components do not. - Publishing is component-scoped, exceptions are binary-scoped. The
base-packagesgroup lists component names; theexceptions-packagesgroup lists binary RPM names with# srpm: <name>comments. Always search by# srpm:comment rather than guessing suffix patterns. - This is a metadata-only change. No builds or tests are needed — the component is simply being dropped from the distro definition.
- When removing a component and its exclusive dependencies (packages only needed by the component being removed), remove them all in the same change to keep the tree consistent.