Skip to content
Snippets Groups Projects
Commit 6adb48c2 authored by Ulrich Schwickerath's avatar Ulrich Schwickerath
Browse files

document untagging

parent a0fd9ead
Branches removing_tags
No related tags found
1 merge request!67document how to delete a tag
Pipeline #2411528 passed
...@@ -18,18 +18,30 @@ Please update the clone of this repo on lxsoftadm01: ...@@ -18,18 +18,30 @@ Please update the clone of this repo on lxsoftadm01:
[build@lxsoftadm01] git pull [build@lxsoftadm01] git pull
``` ```
## Untag packages ## Untag packages
If there are any packages using these tags, it is better to untag them before removing the tag from KOJI. If there are any packages using these tags, it is better to untag them before removing the tag from KOJI. To get the full list of tags use:
```bash
koji list-tags $DIST-*
```
where $DIST is to be replaced by the tag pattern to be removed.
For each of these tags, check if there are any corresponding builds, eg
```bash
koji list-tagged $DIST-testing
```
Then untag each of the listed packages before proceeding with eg
```bash
koji untag $DIST-testing <package>
```
## Remove the tag from koji ## Remove the tag from koji
From lxsoftadm01 remove all related tags from koji From lxsoftadm01 remove all related tags from koji, eg
```bash ```bash
~ > ssh build@lxsoftadm01
koji remove-tag $DIST-testing koji remove-tag $DIST-testing
koji remove-tag $DIST-build koji remove-tag $DIST-build
koji remove-tag $DIST-qa koji remove-tag $DIST-qa
koji remove-tag $DIST-stable koji remove-tag $DIST-stable
``` ```
where ```$DIST``` is to be replaced by the tag to be removed. where again ```$DIST``` is to be replaced by the tag to be removed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment