From ceaeeadeac21b78bb04e23f2705a4e1fa9571593 Mon Sep 17 00:00:00 2001 From: Tony Duckles Date: Thu, 9 Dec 2010 19:27:14 -0600 Subject: [PATCH] .bash_profile: Look for RSA ssh key rather than DSA key --- .bash_profile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.bash_profile b/.bash_profile index 5646308..fbd7e74 100644 --- a/.bash_profile +++ b/.bash_profile @@ -8,8 +8,8 @@ fi # keychain keychain="$(type -P keychain)" test -n "$keychain" && { - if [ -f ~/.ssh/id_dsa ]; then - eval `$keychain -q ~/.ssh/id_dsa` + if [ -f ~/.ssh/id_rsa ]; then + eval `$keychain -q ~/.ssh/id_rsa` source ~/.keychain/`hostname`-sh > /dev/null fi } -- 2.43.0