summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/meta-check4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/meta-check b/bin/meta-check
index eb4f8c7..6a611a9 100755
--- a/bin/meta-check
+++ b/bin/meta-check
@@ -21,7 +21,7 @@ main() {
check-yaml "$file" || ret=$?
done
- # Make sure there are no duplicate usernames
+ msg 'Checking for duplicate usernames'
dups=($(sed -n 's/^username: //p' -- users/*.yml| sort | uniq -d))
if (( ${#dups[@]} )); then
error 'Duplicate usernames:'
@@ -29,7 +29,7 @@ main() {
ret=1
fi
- # Check to make sure the pgp keys are OK
+ msg 'Checking PGP keys'
if pgp-list-keyids | grep -Ev '^(trusted|secondary|revoked)/[a-z][a-z0-9]* [0-9A-F]{40}$'; then
error 'Bad pgp keys ^^^'
ret=1