Difference between revisions of "Configuring a script external to the Vagrantfile"

From MyWiki
Jump to: navigation, search
(Created page with "<source lang="text"> Vagrant.configure("2") do |config| config.vm.provision "shell", path: "script.sh" end </source>")
 
(No difference)

Latest revision as of 09:02, 10 August 2017

Vagrant.configure("2") do |config|
  config.vm.provision "shell", path: "script.sh"
end