1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-02-01 04:02:34 +00:00

Merge pull request #3713 from ThomasWaldmann/fix-3707

Vagrant: xenial64 box now uses username 'vagrant', fixes #3707
This commit is contained in:
TW 2018-03-24 00:40:37 +01:00 committed by GitHub
commit 4a71931e89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
Vagrantfile vendored
View file

@ -399,7 +399,7 @@ Vagrant.configure(2) do |config|
b.vm.provider :virtualbox do |v|
v.memory = 1024 + $wmem
end
b.vm.provision "fs init", :type => :shell, :inline => fs_init("ubuntu")
b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant")
b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid("ubuntu")
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("xenial64")
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(true)