mirror of
https://github.com/rocky-linux/ansible-role-kojihub.git
synced 2024-11-01 02:51:23 +00:00
10 lines
295 B
Bash
10 lines
295 B
Bash
|
#!/bin/bash
|
||
|
# adapted from centos tools
|
||
|
for i in `koji list-tags $1*candidate`; do
|
||
|
USERS="$USERS `koji list-tagged --quiet $i | rev | cut -d " " -f 1 | rev | uniq | tr '\n' ' '`"
|
||
|
TMP=`echo ${i} | cut -d "-" -f 1`
|
||
|
SIG=${TMP%?}
|
||
|
done
|
||
|
|
||
|
echo $1:`echo $USERS|tr " " "\n"|sort|uniq|tr "\n" " "`
|