diff --git a/README.md b/README.md index 47f9bab..ed7e17a 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Using Vagrant for fast local provisioning: * vagrant up * vagrant ssh * cd stacktach-sandbox - * sudo ./build.sh + * ./build.sh Note: This uses sandbox defaults including the use of the Winchester diff --git a/vagrant/Vagrantfile b/vagrant/Vagrantfile index 9ecd1cc..49ce296 100644 --- a/vagrant/Vagrantfile +++ b/vagrant/Vagrantfile @@ -4,4 +4,5 @@ Vagrant.configure(2) do |config| config.vm.box = "ubuntu/trusty64" config.vm.provision "shell", path: "bootstrap.sh" + config.vm.provision "shell", inline: "git clone https://github.com/stackforge/stacktach-sandbox.git", privileged: false end diff --git a/vagrant/bootstrap.sh b/vagrant/bootstrap.sh index 583de61..7111055 100644 --- a/vagrant/bootstrap.sh +++ b/vagrant/bootstrap.sh @@ -21,4 +21,3 @@ then fi fi -git clone https://github.com/stackforge/stacktach-sandbox.git