fix a couple of left over references to expert
authorJameson Graef Rollins <jrollins@finestructure.net>
Tue, 17 Feb 2009 05:36:07 +0000 (00:36 -0500)
committerJameson Graef Rollins <jrollins@finestructure.net>
Tue, 17 Feb 2009 05:36:07 +0000 (00:36 -0500)
src/monkeysphere-authentication
src/monkeysphere-host
src/share/ma/diagnostics
src/share/mh/diagnostics
tests/basic

index 4a09527add0f95a77eeec2f3e1be26169294da98..465777d74713aa1202f087df997a57a78d8c443e 100755 (executable)
@@ -86,8 +86,8 @@ gpg_sphere() {
     su_monkeysphere_user "gpg $@"
 }
 
-# load the core fingerprint into the fingerprint variable, using the
-# gpg host secret key
+# output to stdout the core fingerprint from the gpg core secret
+# keyring
 core_fingerprint() {
     log debug "determining core key fingerprint..."
     gpg_core --quiet --list-secret-key \
index 6220760fa091a6e14a3d0461da817217d1da29bf..8562ec64e9cf74330268fb375d87f24323e18a5b 100755 (executable)
@@ -181,7 +181,8 @@ show_key() {
        | grep '^fpr:' | cut -d: -f10 )
 
     # list the host key info
-    gpg --list-key --fingerprint --list-options show-unusable-uids 2>/dev/null
+    gpg --list-keys --fingerprint \
+       --list-options show-unusable-uids 2>/dev/null
 
     # list the pgp fingerprint
     echo "OpenPGP fingerprint: $HOST_FINGERPRINT"
index 45a8ce28c9624175ef67d71be0a47892671cf0d2..0411080fb8cd3599fee36ecc0ab6cf11e997faf5 100644 (file)
@@ -120,7 +120,7 @@ fi
 
 if [ "$problemsfound" -gt 0 ]; then
     echo "When the above $problemsfound issue"$(if [ "$problemsfound" -eq 1 ] ; then echo " is" ; else echo "s are" ; fi)" resolved, please re-run:"
-    echo "  monkeysphere-authentication expert diagnostics"
+    echo "  monkeysphere-authentication diagnostics"
 else
     echo "Everything seems to be in order!"
 fi
index 96065e658102302bf1dead984c1723642f98f15d..d774723d512b892001c4d42a5c49bdba65f2fb12 100644 (file)
@@ -152,7 +152,7 @@ fi
 
 if [ "$problemsfound" -gt 0 ]; then
     echo "When the above $problemsfound issue"$(if [ "$problemsfound" -eq 1 ] ; then echo " is" ; else echo "s are" ; fi)" resolved, please re-run:"
-    echo "  monkeysphere-host expert diagnostics"
+    echo "  monkeysphere-host diagnostics"
 else
     echo "Everything seems to be in order!"
 fi
index 4c19a85d834057c1cd5395c389b97f89a87ec82b..d78a5941bf88b68e183853b4365a5e638abb04cc 100755 (executable)
@@ -170,17 +170,17 @@ echo "### import host key..."
 ssh-keygen -b 1024 -t rsa -N '' -f "$TEMPDIR"/ssh_host_rsa_key
 monkeysphere-host import-key testhost < "$TEMPDIR"/ssh_host_rsa_key
 
+echo "##################################################"
+echo "### getting host key fingerprint..."
+HOSTKEYID=$( monkeysphere-host show-key | grep '^OpenPGP fingerprint: ' | cut -f3 -d\  )
+echo "$HOSTKEYID"
+
 # change host key expiration
 echo "##################################################"
 echo "### setting host key expiration..."
 monkeysphere-host set-expire 1
 # FIXME: how do we check that the expiration has really been set?
 
-echo "##################################################"
-echo "### getting host key fingerprint..."
-HOSTKEYID=$( monkeysphere-host show-key | grep '^OpenPGP fingerprint: ' | cut -f3 -d\  )
-echo "$HOSTKEYID"
-
 # certify host key with the "Admin's Key".
 # (this would normally be done via keyservers)
 echo "##################################################"
@@ -236,7 +236,7 @@ gpgadmin --armor --export "$HOSTKEYID" | gpg --import
 # teach the "server" about the testuser's key
 echo "##################################################"
 echo "### export testuser key to server..."
-gpg --export testuser | monkeysphere-authentication expert gpg-cmd --import
+gpg --export testuser | monkeysphere-authentication gpg-cmd --import
 
 # update authorized_keys for user
 echo "##################################################"