]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
xinitrc: always start ssh-agent
authorSimon Ruderich <simon@ruderich.org>
Wed, 1 Oct 2014 18:23:52 +0000 (20:23 +0200)
committerSimon Ruderich <simon@ruderich.org>
Wed, 1 Oct 2014 18:23:52 +0000 (20:23 +0200)
The keys might be added later.

xinitrc

diff --git a/xinitrc b/xinitrc
index 0f3aa1e2eae0633f2c565f31166cf840db113760..68b52b7152bff93aa96cced487ffb7dfd5ed3177 100755 (executable)
--- a/xinitrc
+++ b/xinitrc
@@ -68,11 +68,9 @@ if test -f "$HOME/.xinitrc.local"; then
 fi
 
 
-# Start ssh-agent if no agent is running and we have private keys, thanks to
+# Start ssh-agent if no agent is running, thanks to
 # http://code.haskell.org/XMonadContrib/scripts/xinitrc (read on 2011-06-19).
-if test -z "$SSH_AGENT_PID" \
-        && test -x /usr/bin/ssh-agent \
-        && test -f "$HOME/.ssh/id_rsa"; then
+if test -z "$SSH_AGENT_PID" && test -x /usr/bin/ssh-agent; then
     # -s to force bourne shell output. This file is a bourne shell script even
     # if the environment might suggest otherwise.
     eval `/usr/bin/ssh-agent -s` >/dev/null