Browse Source

VMware Fusion Vagrant provider definition

Alex Payne 11 years ago
parent
commit
b77bcdbb0c
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      Vagrantfile

+ 7
- 0
Vagrantfile View File

@@ -9,6 +9,13 @@ Vagrant.configure('2') do |config|
9 9
     vbox.customize ["modifyvm", :id, "--memory", 512]
10 10
   end
11 11
 
12
+  config.vm.provider :vmware_fusion do |vbox, override|
13
+    override.vm.box = 'wheezy64'
14
+    # source: https://github.com/misheska/basebox-packer
15
+    override.vm.box_url = 'https://dl.dropboxusercontent.com/s/g8djjlz1x5tz30j/debian72.box?token_hash=AAH1_-tgqx5PabhxLXD-X7hFEZ9x_-a899fMAYI_Kgd4Bg&dl=1'
16
+    vbox.customize ["modifyvm", :id, "--memory", 512]
17
+  end
18
+
12 19
   config.vm.hostname = 'sovereign.local'
13 20
 
14 21
   config.vm.network "private_network", ip: "172.16.100.2"

Loading…
Cancel
Save