Browse Source

Use box-cutter/debian75 for both VirtualBox and VMware

Use a single Vagrant base box since the one made by Box-Cutter supports both
VirtualBox and VMware (Workstation and Fusion) hypervisors.
Lorenzo Villani 10 years ago
parent
commit
eb37ff5db5
1 changed files with 2 additions and 4 deletions
  1. 2
    4
      Vagrantfile

+ 2
- 4
Vagrantfile View File

@@ -3,16 +3,14 @@
3 3
 # https://github.com/mitchellh/vagrant/blob/master/CHANGELOG.md#130-september-5-2013
4 4
 
5 5
 Vagrant.configure('2') do |config|
6
+  # Source: https://vagrantcloud.com/box-cutter/debian75
7
+  config.vm.box = 'box-cutter/debian75'
6 8
 
7 9
   config.vm.provider :virtualbox do |vbox, override|
8
-    override.vm.box = 'wheezy64'
9
-    override.vm.box_url = 'https://sovereign.lukecyca.com/vagrant/wheezy64.box'
10 10
     vbox.customize ["modifyvm", :id, "--memory", 512]
11 11
   end
12 12
 
13 13
   config.vm.provider :vmware_fusion do |vbox, override|
14
-    # source: https://vagrantcloud.com/box-cutter/debian75
15
-    override.vm.box = 'box-cutter/debian75'
16 14
     vbox.customize ["modifyvm", :id, "--memory", 512]
17 15
   end
18 16
 

Loading…
Cancel
Save