From ff8383ce9092335de6c00447bb45a2a7fbbf8685 Mon Sep 17 00:00:00 2001 From: Jameson Graef Rollins Date: Sat, 21 Feb 2009 14:57:41 -0500 Subject: make sure we're explicitly capturing return codes in places where they are tested, in case things are being run set -e --- src/share/m/ssh_proxycommand | 10 ++++++---- src/share/m/subkey_to_ssh_agent | 10 ++++------ 2 files changed, 10 insertions(+), 10 deletions(-) (limited to 'src/share/m') diff --git a/src/share/m/ssh_proxycommand b/src/share/m/ssh_proxycommand index bd09588..abe068d 100644 --- a/src/share/m/ssh_proxycommand +++ b/src/share/m/ssh_proxycommand @@ -18,6 +18,7 @@ # "marginal case" ouput in the case that there is not a full # validation path to the host output_no_valid_key() { + local returnCode=0 local sshKeyOffered local userID local type @@ -112,11 +113,11 @@ EOF fi ;; esac - done + done || returnCode="$?" # if no key match was made (and the "while read" subshell returned # 1) output how many keys were found - if (($? != 1)) ; then + if (( returnCode != 1 )) ; then cat </dev/null - sshaddresponse="$?" + ssh-add -l >/dev/null || sshaddresponse="$?" if [ "$sshaddresponse" = "2" ]; then failure "Could not connect to ssh-agent" fi @@ -100,8 +99,7 @@ You might want to 'monkeysphere gen-subkey'" passphrase_prompt "Enter passphrase for key $kname: " "$workingdir/passphrase" wait %2 - fi - keysuccess="$?" + fi || keysuccess="$?" rm -f "$workingdir/$kname" done -- cgit v1.2.3 From 5eba4661d75f977b46c8db028c0e79241dd36d76 Mon Sep 17 00:00:00 2001 From: Jameson Graef Rollins Date: Sat, 21 Feb 2009 15:39:44 -0500 Subject: fix return in subkey_to_ssh_agent, so that it returns, instead of exits --- src/share/m/subkey_to_ssh_agent | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/share/m') diff --git a/src/share/m/subkey_to_ssh_agent b/src/share/m/subkey_to_ssh_agent index a2cf9a0..7fb2fdb 100644 --- a/src/share/m/subkey_to_ssh_agent +++ b/src/share/m/subkey_to_ssh_agent @@ -110,5 +110,5 @@ You might want to 'monkeysphere gen-subkey'" # FIXME: sort out the return values: we're just returning the # success or failure of the final authentication subkey in this # case. What if earlier ones failed? - exit "$keysuccess" + return "$keysuccess" } -- cgit v1.2.3 From 0c052b77d171c1723cb371f7c414ff28bad1a7d3 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Sat, 21 Feb 2009 16:11:07 -0500 Subject: fixing typo in ssh_proxycommand. --- src/share/m/ssh_proxycommand | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/share/m') diff --git a/src/share/m/ssh_proxycommand b/src/share/m/ssh_proxycommand index abe068d..ca87c08 100644 --- a/src/share/m/ssh_proxycommand +++ b/src/share/m/ssh_proxycommand @@ -117,7 +117,7 @@ EOF # if no key match was made (and the "while read" subshell returned # 1) output how many keys were found - if (( returnCode != 1 )) ; then + if (( "$returnCode" != 1 )) ; then cat < Date: Sat, 21 Feb 2009 16:14:38 -0500 Subject: un-fix non-typo in ssh_proxycommand. (my mistake!) --- src/share/m/ssh_proxycommand | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/share/m') diff --git a/src/share/m/ssh_proxycommand b/src/share/m/ssh_proxycommand index ca87c08..abe068d 100644 --- a/src/share/m/ssh_proxycommand +++ b/src/share/m/ssh_proxycommand @@ -117,7 +117,7 @@ EOF # if no key match was made (and the "while read" subshell returned # 1) output how many keys were found - if (( "$returnCode" != 1 )) ; then + if (( returnCode != 1 )) ; then cat <