default user name is "vagrant" now

This commit is contained in:
Robin Dunn
2018-02-02 15:14:58 -08:00
parent 25f1799313
commit 605dad01e0
2 changed files with 3 additions and 5 deletions

View File

@@ -16,9 +16,9 @@ Vagrant.configure("2") do |config|
# Share the Phoenix/dist folder so the VM can get the source tarball and has
# a place to put the build results.
config.vm.synced_folder "../../dist", "/home/ubuntu/dist"
config.vm.synced_folder "../../dist", "/home/vagrant/dist"
# And share a folder with the build script
config.vm.synced_folder "../scripts", "/home/ubuntu/scripts"
config.vm.synced_folder "../scripts", "/home/vagrant/scripts"
end

View File

@@ -28,7 +28,5 @@ virtualenv --python=python2.7 venvs/Py27
pyvenv-3.5 venvs/Py35
python3.6 -m venv venvs/Py36
#chown -R vagrant:vagrant venvs
# This box provides a user named "ubuntu" instead
chown -R ubuntu:ubuntu venvs
chown -R vagrant:vagrant venvs