Changeset 96032b3 in sasview
- Timestamp:
- Feb 19, 2015 9:03:42 AM (10 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 78bcf3c3, 66f21cd
- Parents:
- e0a50be
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Vagrantfile
ra97c51e r96032b3 1 1 # -*- mode: ruby -*- 2 2 # vi: set ft=ruby : 3 4 # This allows you to build sasview using vagrant 5 # for the moment you can build Ubuntu on any platform supported by vagrant 6 # (Linux, Mac, Windows) 7 # You will need VirtualBox as well. 8 # Download pages: 9 # http://www.vagrantup.com/downloads 10 # https://www.virtualbox.org/wiki/Downloads 3 11 4 12 # All Vagrant configuration is done below. The "2" in Vagrant.configure … … 20 28 #config.vm.box_url = "https://dl.dropboxusercontent.com/u/15733306/vagrant/fedora-20-netinst-2014_01_05-minimal-puppet-guestadditions.box" 21 29 22 # Disable automatic box update checking. If you disable this, then23 # boxes will only be checked for updates when the user runs24 # `vagrant box outdated`. This is not recommended.25 # config.vm.box_check_update = false26 27 # Create a forwarded port mapping which allows access to a specific port28 # within the machine from a port on the host machine. In the example below,29 # accessing "localhost:8080" will access port 80 on the guest machine.30 # config.vm.network "forwarded_port", guest: 80, host: 808031 32 # Create a private network, which allows host-only access to the machine33 # using a specific IP.34 # config.vm.network "private_network", ip: "192.168.33.10"35 36 # Create a public network, which generally matched to bridged network.37 # Bridged networks make the machine appear as another physical device on38 # your network.39 # config.vm.network "public_network"40 41 # Share an additional folder to the guest VM. The first argument is42 # the path on the host to the actual folder. The second argument is43 # the path on the guest to mount the folder. And the optional third44 # argument is a set of non-required options.45 # config.vm.synced_folder "../data", "/vagrant_data"46 47 30 # Provider-specific configuration so you can fine-tune various 48 31 # backing providers for Vagrant. These expose provider-specific options. … … 58 41 end 59 42 # 60 # View the documentation for the provider you are using for more61 # information on available options.62 63 # Define a Vagrant Push strategy for pushing to Atlas. Other push strategies64 # such as FTP and Heroku are also available. See the documentation at65 # https://docs.vagrantup.com/v2/push/atlas.html for more information.66 # config.push.define "atlas" do |push|67 # push.app = "YOUR_ATLAS_USERNAME/YOUR_APPLICATION_NAME"68 # end69 70 # Enable provisioning with a shell script. Additional provisioners such as71 # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the72 # documentation for more information about their specific syntax and use.73 # config.vm.provision "shell", inline <<-SHELL74 # sudo apt-get install apache275 # SHELL76 43 config.vm.provision :shell, :path => "Vagrantprovision.sh" 77 44 end
Note: See TracChangeset
for help on using the changeset viewer.