termux-packages/packages/openssh/source-ssh-agent.sh

20 lines
556 B
Bash
Raw Normal View History

#!/bin/sh
# source-ssh-agent: Script to source for ssh-agent to work.
2015-06-13 01:03:31 +02:00
export SSH_AUTH_SOCK=$PREFIX/var/run/ssh-agent
2015-06-13 01:03:31 +02:00
start_agent() {
2019-02-12 09:23:21 +01:00
rm -f $SSH_AUTH_SOCK
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
ssh-add
2015-06-13 01:03:31 +02:00
}
2019-02-12 09:41:30 +01:00
MESSAGE=$(ssh-add -L 2>&1)
if [ "$MESSAGE" = 'Could not open a connection to your authentication agent.' -o \
"$MESSAGE" = 'Error connecting to agent: Connection refused' -o \
"$MESSAGE" = 'Error connecting to agent: No such file or directory' ]; then
2019-02-12 09:23:21 +01:00
start_agent
elif [ "$MESSAGE" = "The agent has no identities." ]; then
2019-02-12 09:23:21 +01:00
ssh-add
2015-06-13 01:03:31 +02:00
fi