labs: install private ssh key, too

In addition to the public Vagrant insecure ssh key, install the private
one, too. Once in the VM, the private key can be used for connections to
other VMs.

Change-Id: If99fd29099749bf8224f449f5884399eebdef6ce
This commit is contained in:
Roger Luethi 2014-10-03 10:18:04 +02:00
parent e87bc6f92a
commit 95f1962264

View File

@ -49,6 +49,10 @@ function authorize_vagrant_key {
fi
}
echo "Installing Vagrant insecure private key (connections to other VMs)."
get_vagrant_key "vagrant"
chmod 400 "$HOME/.ssh/vagrant"
get_vagrant_key "vagrant.pub"
chmod 444 "$HOME/.ssh/vagrant.pub"