From b6cba4e60826a77fcf5aa2cf00c16fd729490628 Mon Sep 17 00:00:00 2001 From: Tony Duckles Date: Sun, 8 Aug 2010 23:39:23 -0500 Subject: [PATCH] .bashrc: Update push_ssh_cert() to append to ~/.ssh/authorized_keys2 Append to ~/.ssh/authorized_keys2 rather than authorized_keys. --- .bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index a4d7546..ad1df31 100644 --- a/.bashrc +++ b/.bashrc @@ -252,7 +252,7 @@ push_ssh_cert() { for _host in "$@"; do echo $_host - ssh $_host 'cat >> ~/.ssh/authorized_keys' < ~/.ssh/id_dsa.pub + ssh $_host 'cat >> ~/.ssh/authorized_keys2' < ~/.ssh/id_dsa.pub done } -- 2.43.0