From 500e9c26931681125b0aee88f82bdbde4cb8a052 Mon Sep 17 00:00:00 2001 From: Michael Marineau Date: Sat, 26 Apr 2014 23:05:22 -0400 Subject: [PATCH] add(coreos-base/coreos-vagrant): Import Vagrantfile template This is the static piece of the Vagrantfile previously defined in scripts/build_library/virtualbox_ovf.sh. Moving it here so we can start maintaining the major Vagrant OEM pieces together. --- .../coreos-base/oem-vagrant/files/box/Vagrantfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sdk_container/src/third_party/coreos-overlay/coreos-base/oem-vagrant/files/box/Vagrantfile diff --git a/sdk_container/src/third_party/coreos-overlay/coreos-base/oem-vagrant/files/box/Vagrantfile b/sdk_container/src/third_party/coreos-overlay/coreos-base/oem-vagrant/files/box/Vagrantfile new file mode 100644 index 0000000000..50fe4487d9 --- /dev/null +++ b/sdk_container/src/third_party/coreos-overlay/coreos-base/oem-vagrant/files/box/Vagrantfile @@ -0,0 +1,11 @@ +if Vagrant::VERSION < "1.2.3" + raise "Need at least vagrant version 1.2.3, please update" +end + +Vagrant.configure("2") do |config| + # SSH in as the default 'core' user, it has the vagrant ssh key. + config.ssh.username = "core" + + # Disable the base shared folder, guest additions are unavailable. + config.vm.synced_folder ".", "/vagrant", disabled: true +end