summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshenl <shenl@google.com>2014-04-23 12:33:26 -0700
committershenl <shenl@google.com>2014-04-23 12:33:26 -0700
commitf2e4bd206bef73d5da16fe265108a4d00c721be2 (patch)
tree37d2ff80ccc877c22b21674ff7db5d6ff06bb56e
parent0c475e4bb3541677464e9bd244bd8ff027fc340b (diff)
downloadgoogle-compute-image-packages-f2e4bd206bef73d5da16fe265108a4d00c721be2.tar.gz
Update onboot
-rwxr-xr-xgoogle-startup-scripts/usr/share/google/onboot6
1 files changed, 3 insertions, 3 deletions
diff --git a/google-startup-scripts/usr/share/google/onboot b/google-startup-scripts/usr/share/google/onboot
index 16fe379..3a8bea1 100755
--- a/google-startup-scripts/usr/share/google/onboot
+++ b/google-startup-scripts/usr/share/google/onboot
@@ -183,21 +183,21 @@ function print_ssh_key_fingerprints()
if [ -x /etc/ssh/ssh_host_rsa_key.pub ]; then
echo "RSA"
- ssh-keygen -l /etc/ssh/ssh_host_rsa_key.pub
+ ssh-keygen -lf /etc/ssh/ssh_host_rsa_key.pub
else
echo "No RSA public key found."
fi
if [ -x /etc/ssh/ssh_host_dsa_key.pub ]; then
echo "DSA"
- ssh-keygen -l /etc/ssh/ssh_host_dsa_key.pub
+ ssh-keygen -lf /etc/ssh/ssh_host_dsa_key.pub
else
echo "No DSA public key found."
fi
if [ -x /etc/ssh/ssh_host_ecdsa_key.pub ]; then
echo "ECDSA"
- ssh-keygen -l /etc/ssh/ssh_host_ecdsa_key.pub
+ ssh-keygen -lf /etc/ssh/ssh_host_ecdsa_key.pub
else
echo "No ECDSA public key found."
fi