Skip to content
This repository has been archived by the owner on Jul 26, 2019. It is now read-only.

Commit

Permalink
feat: Reconsider VBoxGuestAdditions updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Csaba Maulis committed Feb 13, 2017
1 parent 27b6408 commit 487aab4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,8 @@ Only with VirtualBox provider.
Use the included `boxmgr` script, for all arguments see built-in help.

1. boxmgr build [boxname]
2. boxmgr update-vbox [boxname] # if you need to upgrade VBoxGuestAdditions
2. boxmgr upgrade [boxname] # optional
2. boxmgr add [boxname]
2. boxmgr update-vbox [boxname] # if you need to upgrade VBoxGuestAdditions manually
3. boxmgr add [boxname]

On end, you have a `senki/[box]` added to your Vagrant environment. Check with `vagrant box list`.

Expand Down
4 changes: 2 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Vagrant.configure(2) do |config|

config.vm.define "trusty" do |trusty|
trusty.ssh.insert_key = false
trusty.vbguest.auto_update = true
trusty.vm.box = "ubuntu/trusty64"
trusty.vm.hostname = "senki-trusty.local"
trusty.vm.provision "shell", path: "src/trusty.sh", args: ["prod"]
Expand All @@ -38,7 +39,6 @@ Vagrant.configure(2) do |config|

config.vm.define "xenial" do |xenial|
xenial.ssh.insert_key = false
xenial.vbguest.auto_update = false
xenial.vm.box = "ubuntu/xenial64"
xenial.vm.hostname = "senki-xenial.local"
xenial.vm.provision "shell", path: "src/xenial.sh", args: ["prod"]
Expand All @@ -59,6 +59,7 @@ Vagrant.configure(2) do |config|

config.vm.define "trusty_test" do |trusty_test|
trusty_test.vm.box = "ubuntu/trusty64"
trusty_test.vbguest.auto_update = true
trusty_test.vm.hostname = "senki-trusty-test.local"
trusty_test.vm.network "private_network", ip:"192.168.33.15"
trusty_test.vm.provision "shell", path: "src/trusty.sh", args: ["test"]
Expand All @@ -80,7 +81,6 @@ Vagrant.configure(2) do |config|
end

config.vm.define "xenial_test" do |xenial_test|
xenial_test.vbguest.auto_update = false
xenial_test.vm.box = "ubuntu/xenial64"
xenial_test.vm.hostname = "senki-xenial-test.local"
xenial_test.vm.network "private_network", ip:"192.168.33.16"
Expand Down

0 comments on commit 487aab4

Please sign in to comment.