From 3e5e7f27d72727928bd39798e98a3a15d866cea5 Mon Sep 17 00:00:00 2001 From: caowei Date: Mon, 26 Sep 2016 18:19:20 +0800 Subject: [PATCH] Adding the steps of generateing ssh key in tools/init-runonce TrivialFix Change-Id: I66857a92b0ae61cd8300955e2bf9605f93937b1d --- tools/init-runonce | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/init-runonce b/tools/init-runonce index 7fb50f7381..013d2f0018 100755 --- a/tools/init-runonce +++ b/tools/init-runonce @@ -71,6 +71,10 @@ else neutron security-group-rule-create default --direction ingress --ethertype IPv4 --protocol tcp --port-range-min 8080 --port-range-max 8080 --remote-ip-prefix 0.0.0.0/0 fi +if [ ! -f ~/.ssh/id_rsa.pub ]; then + echo Generating ssh key. + ssh-keygen -t rsa -f ~/.ssh/id_rsa +fi if [ -r ~/.ssh/id_rsa.pub ]; then echo Configuring nova public key and quotas. nova keypair-add --pub-key ~/.ssh/id_rsa.pub mykey