From 0d10acd9aafe8569ac189bab38f906d4d498ed90 Mon Sep 17 00:00:00 2001 From: Stefan Gaiselmann Date: Fri, 26 Feb 2021 15:22:09 +0100 Subject: [PATCH] Removed "trap" in start-agent (makes problems). --- bin/executable_start-agent.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/executable_start-agent.sh b/bin/executable_start-agent.sh index 25ccda0..dbcd381 100755 --- a/bin/executable_start-agent.sh +++ b/bin/executable_start-agent.sh @@ -4,6 +4,6 @@ SSHAGENT=/usr/bin/ssh-agent SSHAGENTARGS="-s" if [ -z "$SSH_AUTH_SOCK" ] && [ -x "$SSHAGENT" ]; then eval `$SSHAGENT $SSHAGENTARGS` -# trap "kill $SSH_AGENT_PID" 0 + # seems to make problems trap "kill $SSH_AGENT_PID" 0 fi