23 lines
636 B
Bash
Executable file
23 lines
636 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
set -x
|
|
[ -z "${P11M+x}" ] && P11M="$(dnf repoquery --installed -l p11-kit | grep \/p11-kit-proxy.so\$ | head -1)"
|
|
|
|
echo SSH_AGENT_PID before: $SSH_AGENT_PID
|
|
|
|
[ -z "$(pidof ssh-agent)" -o "${SSH_AGENT_PID}" != "$(pidof ssh-agent)" ] && eval "$(ssh-agent -s)"
|
|
|
|
|
|
echo SSH_AGENT_PID after: $SSH_AGENT_PID
|
|
|
|
#if ssh-add -l | grep -q "${P11M}"; then
|
|
# # Remove any stale loaded keys from token, ssh-agent does not automatically
|
|
# # reconnect with the token when you reinsert it.
|
|
# ssh-add -e "${P11M}"
|
|
#fi
|
|
|
|
ssh-add -e "${P11M}" 2>/dev/null
|
|
echo $?
|
|
# Tell ssh-agent to use the keys on the token
|
|
ssh-add -s "${P11M}"
|