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.
This commit is contained in:
Michael Marineau 2014-04-26 23:05:22 -04:00
parent e90664189d
commit 500e9c2693

View File

@ -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