check for SSH_CONNECTION var (ty tmux)
parent
ee1e80fc3b
commit
b4c6358390
4
zshrc
4
zshrc
|
@ -35,8 +35,8 @@ fi
|
||||||
# GPG/SSH
|
# GPG/SSH
|
||||||
## Void: Install pcsclite, pcsc-ccid, gnupg2-scdaemon
|
## Void: Install pcsclite, pcsc-ccid, gnupg2-scdaemon
|
||||||
## Yubico openpgp: https://support.yubico.com/support/solutions/articles/15000006420-using-your-yubikey-with-openpgp
|
## Yubico openpgp: https://support.yubico.com/support/solutions/articles/15000006420-using-your-yubikey-with-openpgp
|
||||||
# Run if NOT ssh session
|
# Run if ALL variables are not set
|
||||||
if [ -z "$SSH_CLIENT" ] || [ -z "$SSH_TTY" ]; then
|
if [ -z "$SSH_CONNECTION" ] && [ -z "$SSH_CLIENT" ] && [ -z "$SSH_TTY" ]; then
|
||||||
if [[ "$OSTYPE" == 'darwin'* ]]; then
|
if [[ "$OSTYPE" == 'darwin'* ]]; then
|
||||||
eval `ssh-agent`
|
eval `ssh-agent`
|
||||||
ssh-add -t 48h -s $OPENSC_LIBS/opensc-pkcs11.so
|
ssh-add -t 48h -s $OPENSC_LIBS/opensc-pkcs11.so
|
||||||
|
|
Loading…
Reference in New Issue