Sha256: 77b5e11103a1e4f353ec6204544e449cc20e70152a22666961f7ad2696f2f7af
Contents?: true
Size: 617 Bytes
Versions: 88
Compression:
Stored size: 617 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 -Lo /home/vagrant/.ssh/authorized_keys \ 'https://raw.github.com/mitchellh/vagrant/master/keys/vagrant.pub' 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
88 entries across 16 versions & 1 rubygems