lancache-autofill/Vagrantfile

26 lines
741 B
Ruby
Raw Permalink Normal View History

2017-08-27 21:17:18 +00:00
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
2021-08-30 17:29:07 +00:00
config.vm.box = "hashicorp/bionic64"
2017-08-27 21:17:18 +00:00
config.vm.hostname = "lancache-autofill"
config.vm.network "public_network",
use_dhcp_assigned_default_route: true
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--natdnshostresolver1", "off"]
v.customize ["modifyvm", :id, "--natdnsproxy1", "off"]
v.customize ["modifyvm", :id, "--uartmode1", "disconnected" ]
2017-08-27 21:17:18 +00:00
end
config.vm.provision "project",
type: "shell",
privileged: false,
inline: "/vagrant/install.sh"
2017-08-27 21:17:18 +00:00
end