
This packer template is usded to create the packstack-vagrant basebox and should be part of packstack-vagrant. Change-Id: I8283faaeafb12b9c8be7c85b3fc9ee093cbf154e
9 lines
253 B
Bash
9 lines
253 B
Bash
#!/bin/sh
|
|
|
|
mkdir /home/vagrant/.ssh
|
|
wget --no-check-certificate \
|
|
'https://github.com/mitchellh/vagrant/raw/master/keys/vagrant.pub' \
|
|
-O /home/vagrant/.ssh/authorized_keys
|
|
chown -R vagrant /home/vagrant/.ssh
|
|
chmod -R go-rwsx /home/vagrant/.ssh
|