Sha256: 8beef7e3d60205ec7c970c990557bb4264fe84e9c9c860ff3e5bc3ddc21770cd
Contents?: true
Size: 631 Bytes
Versions: 11
Compression:
Stored size: 631 Bytes
Contents
# Set up Vagrant. date > /etc/vagrant_box_build_time # Create the user vagrant with password vagrant useradd -G sudo -p $(perl -e'print crypt("vagrant", "vagrant")') -m -s /bin/bash -N vagrant # Install vagrant keys mkdir -pm 700 /home/vagrant/.ssh curl -fLo /home/vagrant/.ssh/authorized_keys \ 'https://raw.github.com/mitchellh/vagrant/master/keys/vagrant.pub' || exit $? chmod 0600 /home/vagrant/.ssh/authorized_keys chown -R vagrant:vagrant /home/vagrant/.ssh # Customize the message of the day echo 'Welcome to your Vagrant-built virtual machine.' > /var/run/motd # Install NFS client apt-get -y install nfs-common
Version data entries
11 entries across 11 versions & 1 rubygems