Update Vagrant provision.sh to execute command as non-root user

Also, some commands were only available in an interactive shell, those were changed.

Signed-off-by: Sebastian Serth <Sebastian.Serth@student.hpi.de>
This commit is contained in:
Sebastian Serth
2018-02-25 23:46:49 +01:00
parent 84bd85703d
commit 534fd651e9
2 changed files with 67 additions and 37 deletions

2
Vagrantfile vendored
View File

@ -8,5 +8,5 @@ Vagrant.configure(2) do |config|
end
config.vm.network "private_network", ip: "192.168.59.104"
# config.vm.synced_folder "../data", "/vagrant_data"
config.vm.provision "shell", path: "provision.sh"
config.vm.provision "shell", path: "provision.sh", privileged: false
end