github.com_burnett01_rsync-.../agent-stop

15 lines
290 B
Text
Raw Normal View History

2020-01-02 16:57:06 +01:00
#!/bin/sh
if [ ! -z "$SSH_AGENT_PID" ]; then
2020-01-02 22:38:03 +01:00
echo "Var Set"
2020-01-02 16:57:06 +01:00
ssh-agent -k
exit $?
elif [ -f "/tmp/ssh-agent-id" ]; then
2020-01-02 22:38:03 +01:00
echo "File Exists"
2020-01-02 16:57:06 +01:00
SSH_AGENT_PID=$(cat /tmp/ssh-agent-id)
ssh-agent -k
exit $?
else
echo "SSH_AGENT_PID not set, /tmp/ssh-agent-id doesn't exist!" 1>&2
exit 1
fi