cert_verify.sh - vagrant home

pull/584/head
Sujith Abdul Rahim 2020-05-06 11:40:14 +05:30
parent 853fb56269
commit 23801b3006
2 changed files with 2 additions and 0 deletions

2
vagrant/Vagrantfile vendored
View File

@ -71,6 +71,7 @@ Vagrant.configure("2") do |config|
end end
node.vm.provision "setup-dns", type: "shell", :path => "ubuntu/update-dns.sh" 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
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 "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 "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 "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
end end