Sha256: 7d7658b7fa82a5ab06a681d2c0a3a39df4664310e782ec5f8002d6b6df78a1b0
Contents?: true
Size: 677 Bytes
Versions: 227
Compression:
Stored size: 677 Bytes
Contents
# Set up Vagrant. date > /etc/vagrant_box_build_time # Add groups puppet and chef groupadd puppet groupadd chef # 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
227 entries across 25 versions & 2 rubygems