mirror of
https://github.com/grafana/grafana.git
synced 2024-12-29 10:21:41 -06:00
ba46cf40e4
Follow-up for 4b16cd6cc8
17 lines
209 B
Bash
Executable File
17 lines
209 B
Bash
Executable File
#!/bin/bash
|
|
|
|
_files=$*
|
|
|
|
ALL_SIGNED=0
|
|
|
|
for file in $_files; do
|
|
if rpm -K "$file" | grep "pgp.*OK" -q ; then
|
|
echo "$file" OK
|
|
else
|
|
ALL_SIGNED=1
|
|
echo "$file" NOT SIGNED
|
|
fi
|
|
done
|
|
|
|
exit $ALL_SIGNED
|