mirror of
https://github.com/hauler-dev/hauler.git
synced 2026-05-20 08:04:15 +00:00
22 lines
601 B
Ruby
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
|