summaryrefslogtreecommitdiff
path: root/definitions/jessie/vagrant.sh
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2015-04-29 14:24:11 +0200
committervarac <varacanero@zeromail.org>2015-04-29 14:24:11 +0200
commitd3bfd57f39246cd41688b9256f262b6efdddfbf4 (patch)
tree23849b11ccb3af3244f549b07be3ec337dc0df9b /definitions/jessie/vagrant.sh
parentfdd0c448125173a69582a59e4a969f4dabcb52e7 (diff)
added definitions/jessie based on templates/Debian-8.0-amd64-netboot
Diffstat (limited to 'definitions/jessie/vagrant.sh')
-rw-r--r--definitions/jessie/vagrant.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/definitions/jessie/vagrant.sh b/definitions/jessie/vagrant.sh
new file mode 100644
index 0000000..54c2a71
--- /dev/null
+++ b/definitions/jessie/vagrant.sh
@@ -0,0 +1,21 @@
+# 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
+
+