summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJameson Graef Rollins <jrollins@finestructure.net>2008-11-15 20:49:27 -0500
committerJameson Graef Rollins <jrollins@finestructure.net>2008-11-15 20:49:27 -0500
commit2459fa3ea277d7b9289945748619eab1e3441e5c (patch)
tree42829ca1e53e1aadf400ecb46c3af47b2043e13e /src
parentd39039bbc33b3f6cff881114b7accd3e7cffdc94 (diff)
Added info log output when a new key is added to known_hosts file.
Diffstat (limited to 'src')
-rw-r--r--src/common11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/common b/src/common
index 297e7f3..efee9bd 100644
--- a/src/common
+++ b/src/common
@@ -742,6 +742,7 @@ process_user_id() {
process_host_known_hosts() {
local host
local userID
+ local noKey=
local nKeys
local nKeysOK
local ok
@@ -768,8 +769,9 @@ process_host_known_hosts() {
continue
fi
- # remove the old host key line, and note if removed
- remove_line "$KNOWN_HOSTS" "$sshKey"
+ # remove any old host key line, and note if removed nothing is
+ # removed
+ remove_line "$KNOWN_HOSTS" "$sshKey" || noKey=true
# if key OK, add new host line
if [ "$ok" -eq '0' ] ; then
@@ -788,6 +790,11 @@ process_host_known_hosts() {
else
ssh2known_hosts "$host" "$sshKey" >> "$KNOWN_HOSTS"
fi
+
+ # log if this is a new key to the known_hosts file
+ if [ "$noKey" ] ; then
+ log info "* new key for $host added to known_hosts file."
+ fi
fi
done