mirror of
https://github.com/rocky-linux/ansible-role-kojihub.git
synced 2025-01-01 13:00:56 +00:00
6 lines
179 B
Bash
6 lines
179 B
Bash
#!/bin/bash
|
|
# adapted from centos
|
|
logfile=/var/tmp/koji-regen-repo.log
|
|
for buildroot in $(koji list-tags \*-build); do
|
|
koji regen-repo --nowait $buildroot >> $logfile 2>&1
|
|
done
|