Created
August 18, 2014 20:44
-
-
Save phaus/641590488f723272949e to your computer and use it in GitHub Desktop.
Vagrant OmniOS Crossbow Config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
config.vm.box = "OmniOS-crossbow" | |
config.vm.box_url = "http://omnios.omniti.com/media/OmniOS_r151006c-r1.box" | |
config.vm.hostname = "omnios-crossbow" | |
config.vm.network "private_network", type: "dhcp" | |
config.vm.network :private_network, ip: "192.168.0.1" | |
config.vm.network :private_network, ip: "10.10.0.1" | |
config.vm.provider "virtualbox" do |v| | |
v.memory = 2048 | |
v.cpus = 2 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment