cdn-ops/global/post-tasks.d/015cosmos-trust

21 lines
628 B
Text
Raw Normal View History

2013-09-02 16:01:50 +02:00
#!/bin/sh
2013-10-31 22:20:33 +01:00
if [ -z "$COSMOS_KEYS" ]; then
2013-10-31 22:04:54 +01:00
COSMOS_KEYS=/etc/cosmos/keys
fi
for k in $COSMOS_KEYS/*.pub; do
2013-09-02 16:01:50 +02:00
fp=`cosmos gpg --with-colons --with-fingerprint < $k| awk -F: '$1 == "pub" {print $5}'`
cosmos gpg --with-colons --fingerprint | grep -q ":$fp:" || cosmos gpg --import < $k
done
for fp in `cosmos gpg --with-colons --fingerprint | awk -F: '$1 == "pub" {print $5}'`; do
seen="no"
2013-10-31 23:26:16 +01:00
for k in $COSMOS_KEYS/*.pub; do
2013-09-02 16:01:50 +02:00
cosmos gpg --with-colons --with-fingerprint < $k | grep -q ":$fp:" && seen="yes"
done
if [ "x$seen" = "xno" ]; then
cosmos gpg --yes --batch --delete-key $fp || true
fi
done