
* Update Vagrantfile to run git clone command as unprivileged to avoid having root own the directory * Update README to reflect changed command Change-Id: Ibfde4f9cce2367ee44afb43dbafbaf6d626d7381
9 lines
289 B
Ruby
9 lines
289 B
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
|
|
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
|