From 4b392222ea72745f03ccb6bdc4f6ea4717909bab Mon Sep 17 00:00:00 2001 From: Matt Nikkel Date: Wed, 2 Sep 2020 20:41:47 -0400 Subject: [PATCH] Fix Vagrantfile airgap shell provisioner type --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 9a45b69..d56a560 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -15,7 +15,7 @@ Vagrant.configure("2") do |config| vb.memory = "2048" vb.cpus = "2" - config.vm.provision "airgap", run: "always", + config.vm.provision "airgap", type: "shell", run: "always", inline: "/opt/k3ama/vagrant-scripts/airgap.sh airgap" end