Navigation Menu

Skip to content

Commit

Permalink
apt: fix broken vm configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
kenhys committed Apr 25, 2017
1 parent e5e7361 commit 5f35c13
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/apt/Vagrantfile
Expand Up @@ -18,8 +18,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|

vms.each do |vm|
config.vm.define(vm[:id]) do |node|
node.vm.box = vm[:id]
node.vm.box_url = vm[:box_url]
node.vm.box = vm[:box]
node.vm.provision(:shell, :path => "build-deb.sh")
node.vm.provider("virtualbox") do |virtual_box|
virtual_box.memory = (ENV["VM_MEMORY"] || 768).to_i
Expand Down

0 comments on commit 5f35c13

Please sign in to comment.