Allow for passing CHECK_KEYSERVER variable to proxycommand
authorJameson Graef Rollins <jrollins@phys.columbia.edu>
Mon, 30 Jun 2008 13:50:57 +0000 (09:50 -0400)
committerJameson Graef Rollins <jrollins@phys.columbia.edu>
Mon, 30 Jun 2008 13:50:57 +0000 (09:50 -0400)
src/monkeysphere-ssh-proxycommand

index 15153d8d2a112d5baf9c1e926eac943da67df388..30d511a19ebab2b47fe5159eb6e35410bfd7d249 100755 (executable)
@@ -51,7 +51,7 @@ fi
 # if the host is in the gpg keyring...
 if gpg --list-key ="${URI}" 2>&1 >/dev/null ; then
     # do not check the keyserver
-    CHECK_KEYSERVER="false"
+    CHECK_KEYSERVER=${CHECK_KEYSERVER:-"false"}
 
 # if the host is NOT in the keyring...
 else
@@ -63,12 +63,12 @@ else
        # FIXME: more nuanced checking should be done here to properly
        # take into consideration hosts that join monkeysphere by
        # converting an existing and known ssh key
-       CHECK_KEYSERVER="false"
+       CHECK_KEYSERVER=${CHECK_KEYSERVER:-"false"}
 
     # if the host key is not found in the known_hosts file...
     else
        # check the keyserver
-       CHECK_KEYSERVER="true"
+       CHECK_KEYSERVER=${CHECK_KEYSERVER:-"true"}
     fi
 fi
 export CHECK_KEYSERVER