LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

koji-untag-build

Remove a tag from one or more Koji builds

TLDR

Remove tag from a build
$ koji untag-build [tag] [name-version-release]
copy
Remove tag from multiple builds
$ koji untag-build [tag] [nvr1] [nvr2]
copy
Untag all versions of a package
$ koji untag-build [tag] [package] --all
copy
Untag all except latest version
$ koji untag-build [tag] [package] --non-latest
copy
Dry run to preview changes
$ koji untag-build [tag] [nvr] --test
copy
Untag with verbose output
$ koji untag-build [tag] [nvr] --verbose
copy

SYNOPSIS

koji untag-build [options] tag pkg [pkg...]

DESCRIPTION

koji untag-build removes a tag from one or more builds in the Koji build system. Builds can be specified by name-version-release (NVR) or by package name when combined with `--all` or `--non-latest`. This is used to remove packages from repositories or clean up old builds.

PARAMETERS

--all

Untag all versions of the package in this tag.
--non-latest
Untag all versions except the latest.
-n, --test
Test mode -- show what would be done without actually doing it.
-v, --verbose
Print verbose output.
-h, --help
Display help information.

CAVEATS

Untagging builds may affect repository contents and downstream consumers. Use `--test` to preview changes before applying them. Requires appropriate Koji permissions.

SEE ALSO

Copied to clipboard
Kai