Don't allow agent reloads, if it's running already.

This commit is contained in:
John Internet 2020-01-02 23:08:35 +00:00
parent 6cd1d3e4bd
commit 7e8e10f130

View file

@ -6,7 +6,17 @@ mkdir -p "$STORE_PATH"
# Start the SSH agent if it isn't already. # Start the SSH agent if it isn't already.
if [ -z "$SSH_AGENT_PID" ]; then if [ -z "$SSH_AGENT_PID" ]; then
eval "$(ssh-agent)" > /dev/null if [ -f "$STORE_PATH/id" ]; then
echo "$SSH_AGENT_PID" > "$STORE_PATH"/id # Our auth agent is already running.
echo "$SSH_AUTH_SOCK" > "$STORE_PATH"/sock # Reload the vars, and export them.
SSH_AGENT_PID=$(cat "$STORE_PATH/id")
export SSH_AGENT_PID
SSH_AUTH_SOCK=$(cat "$STORE_PATH/sock")
export SSH_AUTH_SOCK
else
eval "$(ssh-agent)" > /dev/null
echo "$SSH_AGENT_PID" > "$STORE_PATH"/id
echo "$SSH_AUTH_SOCK" > "$STORE_PATH"/sock
fi
fi fi