mirror of
https://github.com/rocky-linux/ansible-role-kojihub.git
synced 2024-11-01 02:51:23 +00:00
7 lines
179 B
Bash
7 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
|