diff options
Diffstat (limited to 'global')
-rwxr-xr-x | global/post-tasks.d/015cosmos-trust | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/global/post-tasks.d/015cosmos-trust b/global/post-tasks.d/015cosmos-trust index dfd8a13..447d875 100755 --- a/global/post-tasks.d/015cosmos-trust +++ b/global/post-tasks.d/015cosmos-trust @@ -11,7 +11,7 @@ done for fp in `cosmos gpg --with-colons --fingerprint | awk -F: '$1 == "pub" {print $5}'`; do seen="no" - for k in /etc/cosmos/keys/*.pub; do + for k in $COSMOS_KEYS/*.pub; do cosmos gpg --with-colons --with-fingerprint < $k | grep -q ":$fp:" && seen="yes" done if [ "x$seen" = "xno" ]; then |