aboutsummaryrefslogtreecommitdiff
path: root/release/tools/vagrant-virtualbox.conf
diff options
context:
space:
mode:
Diffstat (limited to 'release/tools/vagrant-virtualbox.conf')
-rw-r--r--release/tools/vagrant-virtualbox.conf18
1 files changed, 18 insertions, 0 deletions
diff --git a/release/tools/vagrant-virtualbox.conf b/release/tools/vagrant-virtualbox.conf
new file mode 100644
index 000000000000..ff14674ca708
--- /dev/null
+++ b/release/tools/vagrant-virtualbox.conf
@@ -0,0 +1,18 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+
+. ${WORLDDIR}/release/tools/vagrant.conf
+
+export VM_EXTRA_PACKAGES="${VM_EXTRA_PACKAGES} virtualbox-ose-additions"
+
+vm_extra_pre_umount () {
+ # VirtualBox first boot pkgs
+ echo 'firstboot_pkgs_list="sudo rsync virtualbox-ose-additions"' >> ${DESTDIR}/etc/rc.conf
+ echo 'vboxguest_enable="YES"' >> ${DESTDIR}/etc/rc.conf
+ echo 'vboxservice_enable="YES"' >> ${DESTDIR}/etc/rc.conf
+
+ # Setup the Vagrant common items
+ vagrant_common
+}