From 324e5028926dcac8a2fe794955cc092332e3828c Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Fri, 19 Dec 2014 23:38:00 -0500 Subject: add more output about what meta-check is doing --- bin/meta-check | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin') 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 -- cgit v1.2.2