X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=src%2Fmonkeysphere-ssh-proxycommand;h=15153d8d2a112d5baf9c1e926eac943da67df388;hb=f5409b72c5635ff77c2cd49422206b14b2827893;hp=6dcb723e244a6d32d5f114dc02a6f336fcae2a58;hpb=0eed0d2cdc73628f731fd0219d5eacc24158bafd;p=monkeysphere.git diff --git a/src/monkeysphere-ssh-proxycommand b/src/monkeysphere-ssh-proxycommand index 6dcb723..15153d8 100755 --- a/src/monkeysphere-ssh-proxycommand +++ b/src/monkeysphere-ssh-proxycommand @@ -39,21 +39,20 @@ if [ -z "$HOST" ] ; then exit 1 fi if [ -z "$PORT" ] ; then - log "port must be specified." - usage - exit 1 + PORT=22 fi # set the host URI URI="ssh://${HOST}" if [ "$PORT" != '22' ] ; then - URI="${URI}:$PORT" + URI="${URI}:${PORT}" 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" + # if the host is NOT in the keyring... else # if the host key is found in the known_hosts file...