write pubkeys to random tmpfile
first solution was one tempfile for all connections there have been probably problems, when more connections have been startet at the same time. on write pubkeys, while the other tried to read the file.
This commit is contained in:
parent
d6d851e51c
commit
d3227931e2
1 changed files with 7 additions and 5 deletions
|
@ -79,19 +79,21 @@ check_token(){
|
||||||
# defined here also, to work also in environments, where functions.sh couldn't be sourced
|
# defined here also, to work also in environments, where functions.sh couldn't be sourced
|
||||||
[ -z "${P11M:+x}" ] && { P11M=$PKCS11_MODULE; export P11M; }
|
[ -z "${P11M:+x}" ] && { P11M=$PKCS11_MODULE; export P11M; }
|
||||||
|
|
||||||
local tmppubkey="${XDG_RUNTIME_DIR}/token.pub"
|
|
||||||
# If DISPLAY is set, ssh-add calls ssh-askpass, and if its in remote-terminal, it wont work
|
# If DISPLAY is set, ssh-add calls ssh-askpass, and if its in remote-terminal, it wont work
|
||||||
# So remember and unset DISPLAY, and set it at the end again, if it was set before
|
# So remember and unset DISPLAY, and set it at the end again, if it was set before
|
||||||
[ $DISPLAY ] && local DISPLAY_ORIG=$DISPLAY
|
[ $DISPLAY ] && local DISPLAY_ORIG=$DISPLAY
|
||||||
[ $DISPLAY ] && logdebug "unset DISPLAY: $DISPLAY"
|
[ $DISPLAY ] && logtrace "unset DISPLAY: $DISPLAY"
|
||||||
[ $DISPLAY ] && unset DISPLAY
|
[ $DISPLAY ] && unset DISPLAY
|
||||||
|
|
||||||
# Write public keys of all in agent stored keys to a temporary file
|
# Write public keys of all in agent stored keys to a temporary file
|
||||||
|
local tmppubkey="$(mktemp -p ${XDG_RUNTIME_DIR} pubkey.XXXXXX.pub)"
|
||||||
|
logtrace "tmppubkey: $tmppubkey"
|
||||||
loginfo "$(ssh-add -L > $tmppubkey)"
|
loginfo "$(ssh-add -L > $tmppubkey)"
|
||||||
# Check if public-keys in tmppubkey are working. They are not working, if you removed and add back hardware-token.
|
# Check if public-keys in tmppubkey are working. They are not working, if you removed and add back hardware-token.
|
||||||
loginfo "$(ssh-add -T ${tmppubkey} || { ssh-add -e $P11M; set -x; ssh-add -s $P11M; } )"
|
loginfo "$(ssh-add -T ${tmppubkey}|| { ssh-add -e $P11M; ssh-add -s $P11M; } )"
|
||||||
loginfo "$(ssh-add -l)"
|
logdebug "$(rm "${tmppubkey}")"
|
||||||
[ $DISPLAY_ORIG ] && logdebug "reset DISPLAY=$DISPLAY_ORIG"
|
loginfo "$(ssh-add -l )"
|
||||||
|
[ $DISPLAY_ORIG ] && logtrace "reset DISPLAY=$DISPLAY_ORIG"
|
||||||
[ $DISPLAY_ORIG ] && export DISPLAY=$DISPLAY_ORIG
|
[ $DISPLAY_ORIG ] && export DISPLAY=$DISPLAY_ORIG
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue