diff --git a/vagrant/Vagrantfile b/vagrant/Vagrantfile index 5b0ac3d..5490ab5 100644 --- a/vagrant/Vagrantfile +++ b/vagrant/Vagrantfile @@ -71,6 +71,7 @@ Vagrant.configure("2") do |config| end node.vm.provision "setup-dns", type: "shell", :path => "ubuntu/update-dns.sh" + node.vm.provision "file", source: "./ubuntu/cert_verify.sh", destination: "$HOME/" end end @@ -113,6 +114,7 @@ Vagrant.configure("2") do |config| node.vm.provision "setup-dns", type: "shell", :path => "ubuntu/update-dns.sh" node.vm.provision "install-docker", type: "shell", :path => "ubuntu/install-docker-2.sh" node.vm.provision "allow-bridge-nf-traffic", :type => "shell", :path => "ubuntu/allow-bridge-nf-traffic.sh" + node.vm.provision "file", source: "./ubuntu/cert_verify.sh", destination: "$HOME/" end end diff --git a/vagrant/cert_verify.sh b/vagrant/ubuntu/cert_verify.sh similarity index 100% rename from vagrant/cert_verify.sh rename to vagrant/ubuntu/cert_verify.sh