1
0
mirror of https://github.com/bertptrs/vimconfig.git synced 2025-12-25 12:30:32 +01:00

Remove ssh-agent code.

More trouble than it's worth.
This commit is contained in:
2018-05-02 12:23:07 +02:00
parent 4cb0232f61
commit 64824bf4a9

View File

@@ -105,13 +105,3 @@ export RANDFILE=$XDG_RUNTIME_DIR/rnd
export NODE_REPL_HISTORY="$XDG_CACHE_HOME/node_repl_history"
export MYSQL_HISTFILE="$XDG_CACHE_HOME/mysql_history"
export PSQL_HISTORY="$XDG_CACHE_HOME/psql_history"
# Make sure a keyring is available
if [[ -z $SSH_AUTH_SOCK ]]; then
if [[ -n $DESKTOP_SESSION ]] && type gnome-keyring-daemon &> /dev/null; then
eval $(gnome-keyring-daemon --start)
export SSH_AUTH_SOCK
elif type ssh-agent &> /dev/null; then
eval $(ssh-agent)
fi
fi