Merge branch 'crash' into master

Heh I don't have a half bad memory!
This commit is contained in:
Geoffrey Frogeye 2020-08-20 21:40:37 +02:00
commit 35d4c10919
3 changed files with 11 additions and 3 deletions

View file

@ -106,10 +106,14 @@ prependpath "$HOME/.config/scripts"
prependpath "$HOME/.termux/bin"
)
# For superseding commands with better ones if they are present
if grep -q enable-ssh-support "$GNUPGHOME/gpg-agent.conf" 2> /dev/null
# SSH Agent
# If GPG agent is configured for SSH
if grep -q ^enable-ssh-support$ $GNUPGHOME/gpg-agent.conf 2> /dev/null
then
# Use GPG as SSH agent
# Load GPG agent
unset SSH_AGENT_PID
if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)"