summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2014-12-19 23:38:00 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2014-12-19 23:38:00 -0500
commit324e5028926dcac8a2fe794955cc092332e3828c (patch)
tree151d9faca17745256d5a0b860dd427f19c045d4a /bin
parentdb435ae2cb8e3711e83efdf10c706bf9800d8804 (diff)
add more output about what meta-check is doing
Diffstat (limited to 'bin')
-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