mirror of
https://github.com/flatcar/scripts.git
synced 2025-10-03 03:21:43 +02:00
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:
parent
e90664189d
commit
500e9c2693
11
sdk_container/src/third_party/coreos-overlay/coreos-base/oem-vagrant/files/box/Vagrantfile
vendored
Normal file
11
sdk_container/src/third_party/coreos-overlay/coreos-base/oem-vagrant/files/box/Vagrantfile
vendored
Normal 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
|
Loading…
x
Reference in New Issue
Block a user