From 8fbafbddbfbdddcb0a3e087185e432973ac73baa Mon Sep 17 00:00:00 2001 From: Scott Moser Date: Wed, 19 Jan 2011 03:49:51 +0000 Subject: move writing of ssh key fingerprints to a separate tool This will allow this code to be called more easily elsewhere. I'm considering having the "all the way up" message contain fingerprints so that they're more or less guaranteed to get to the console where the user could see them. --- tools/write-ssh-key-fingerprints | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 tools/write-ssh-key-fingerprints (limited to 'tools/write-ssh-key-fingerprints') diff --git a/tools/write-ssh-key-fingerprints b/tools/write-ssh-key-fingerprints new file mode 100755 index 00000000..9a081faa --- /dev/null +++ b/tools/write-ssh-key-fingerprints @@ -0,0 +1,10 @@ +#!/bin/sh +{ +echo +echo "#############################################################" +echo "-----BEGIN SSH HOST KEY FINGERPRINTS-----" +ssh-keygen -l -f /etc/ssh/ssh_host_rsa_key.pub +ssh-keygen -l -f /etc/ssh/ssh_host_dsa_key.pub +echo "-----END SSH HOST KEY FINGERPRINTS-----" +echo "#############################################################" +} | logger -p user.info -s -t "ec2" -- cgit v1.2.3