@@ -26,11 +26,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
2626 config . vm . provision :shell , :path => "scripts/install_rvm.sh" , :args => "stable"
2727 config . vm . provision :shell , :path => "scripts/install_ruby.sh" , :args => "1.9.3"
2828 unless BERKSHELF
29- <<<<<<< Updated upstream
3029 config . vm . provision :shell , :path => "scripts/geoshape-install.sh" , :args => "vagrant release-1.2"
31- =======
32- config . vm . provision :shell , :path => "scripts/geoshape-install.sh" , :args => "vagrant master"
33- >>>>>>> Stashed changes
3430 end
3531 config . vm . provision :shell , :inline => "gem install chef --version 11.10.4 --no-rdoc --no-ri --conservative"
3632
@@ -44,7 +40,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
4440 # config.vm.network :forwarded_port, guest: 80, host: 8080
4541
4642 # Create a private network, which allows host-only access to the machine
47- <<<<<<< Updated upstream
4843 # using a specific IP. If you want to run multiple vms at once, you can change the .100
4944 # running a private network eliminates the chances of conflicting with the network you are connected to.
5045 # this is particularly useful when you want to run the vm on your laptop and endup being on various networks
@@ -53,15 +48,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
5348
5449 # Create a public network, obtain it's ip through dhcp and bridge it through host's en0
5550 # config.vm.network :public_network, :bridge => 'en0: Ethernet'
56- =======
57- # using a specific IP.
58- config . vm . network :private_network , ip : "192.168.99.10" , netmask : "255.255.255.0"
59-
60- # Create a public network, obtain it's ip through dhcp and bridge it through host's en0
61- # config.vm.network :public_network, :bridge => 'en0: Ethernet', ip: "192.168.10.222", netmask: "255.255.255.0"
62- # config.vm.network :public_network, :bridge => 'en0: Ethernet'
63- #'en1: Wi-Fi (AirPort)'
64- >>>>>>> Stashed changes
6551
6652 # The following can be used to specify a static ip through the host's en0. You can use other nework adaptors such as 'en1: Wi-Fi (AirPort)'
6753 # config.vm.network :public_network, :bridge => 'en0: Ethernet', ip: "192.168.10.222", netmask: "255.255.255.255"
@@ -75,7 +61,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
7561 # the path on the guest to mount the folder. And the optional third
7662 # argument is a set of non-required options.
7763 # config.vm.synced_folder "../data", "/vagrant_data"
78- config . vm . synced_folder "../MapLoom" , "/MapLoom"
7964
8065 # Provider-specific configuration so you can fine-tune various
8166 # backing providers for Vagrant. These expose provider-specific options.
@@ -85,7 +70,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
8570 # Don't boot with headless mode
8671 vb . gui = true
8772 # Use VBoxManage to customize the VM. For example to change memory:
88- vb . customize [ "modifyvm" , :id , "--memory" , "8000 " ]
73+ vb . customize [ "modifyvm" , :id , "--memory" , "2048 " ]
8974 vb . customize [ "modifyvm" , :id , "--cpus" , "2" ]
9075 end
9176 #
0 commit comments