Adding the steps of generateing ssh key in tools/init-runonce

TrivialFix
Change-Id: I66857a92b0ae61cd8300955e2bf9605f93937b1d
This commit is contained in:
caowei 2016-09-26 18:19:20 +08:00
parent ffbd2c0956
commit 3e5e7f27d7
1 changed files with 4 additions and 0 deletions

View File

@ -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