mirror of
https://github.com/grafana/grafana.git
synced 2025-01-28 17:24:59 -06:00
aefcb06ff8
Closes #12370
18 lines
220 B
Bash
Executable File
18 lines
220 B
Bash
Executable File
#!/bin/bash
|
|
_files=$*
|
|
|
|
ALL_SIGNED=0
|
|
|
|
for file in $_files; do
|
|
rpm -K "$file" | grep "pgp.*OK" -q
|
|
if [[ $? != 0 ]]; then
|
|
ALL_SIGNED=1
|
|
echo $file NOT SIGNED
|
|
else
|
|
echo $file OK
|
|
fi
|
|
done
|
|
|
|
|
|
exit $ALL_SIGNED
|