--- /dev/null
+#!/bin/bash
+#
+# Check puppet fingerprints, hydra perspective.
+#
+
+# Load
+source $APP_BASE/lib/hydra/functions || exit 1
+hydra_config_load
+
+# Command line arguments
+BASENAME="`basename $0`"
+
+hydra $HYDRA mass hydractl puppet-finger
if [ -d "/var/lib/puppetmaster/ssl" ]; then
if [ -d "/var/lib/puppetmaster/ssl/ca/signed" ]; then
for file in `ls /var/lib/puppetmaster/ssl/ca/signed`; do
- fp="`puppet_openssl $file`"
+ fp="`puppet_openssl /var/lib/puppetmaster/ssl/ca/signed/$file`"
echo "`basename $file .pem`: $fp"
done
fi