Add the "Fedora-Cloud" and "RHEL-Cloud" package to the f32-candidate tag, so that builds can be tagged properly.
14 lines
439 B
Bash
Executable file
14 lines
439 B
Bash
Executable file
#!/usr/bin/sh
|
|
set -ux
|
|
|
|
KOJI="koji --server=http://localhost/kojihub --user=kojiadmin --password=kojipass --authtype=password"
|
|
|
|
$KOJI add-tag f32
|
|
$KOJI add-tag --parent f32 f32-candidate
|
|
$KOJI add-tag --parent f32 --arches=x86_64 f32-build
|
|
$KOJI add-target f32-candidate f32-build f32-candidate
|
|
|
|
$KOJI add-pkg --owner kojiadmin f32-candidate Fedora-Cloud
|
|
$KOJI add-pkg --owner kojiadmin f32-candidate RHEL-Cloud
|
|
|
|
$KOJI regen-repo f32-build
|