Files
hauler/Vagrantfile
2020-08-29 22:24:08 -04:00

22 lines
601 B
Ruby

##################################
# The vagrant-vbguest plugin is required for CentOS 7.
# Run the following command to install/update this plugin:
# vagrant plugin install vagrant-vbguest
##################################
Vagrant.configure("2") do |config|
config.vm.box = "centos/7"
config.vm.hostname = "airgap"
config.vm.network "private_network", type: "dhcp"
config.vm.provision "shell",
run: "always",
inline: "ip route delete default"
config.vm.synced_folder ".", "/opt/k3ama"
config.vm.provider "virtualbox" do |vb|
vb.memory = "1024"
vb.cpus = "2"
end
end