From b6754a5019fbfa94816d613e8220d40bfb19876c Mon Sep 17 00:00:00 2001 From: Matt Nikkel Date: Sat, 29 Aug 2020 22:24:08 -0400 Subject: [PATCH] Add vagrant hack to ensure 100% air gap --- Vagrantfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 5f76879..58c2bf6 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -8,8 +8,12 @@ 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"