github.com_burnett01_rsync-.../agent-start
2020-01-02 15:57:06 +00:00

7 lines
164 B
Bash

#!/bin/sh
# Start the SSH agent if it isn't already.
if [ -z "$SSH_AGENT_PID" ]; then
eval $(ssh-agent) > /dev/null
echo "$SSH_AGENT_PID" > /tmp/ssh-agent-id
fi