Skip to content

Instantly share code, notes, and snippets.

@phaus
Created August 18, 2014 20:44
Show Gist options
  • Save phaus/641590488f723272949e to your computer and use it in GitHub Desktop.
Save phaus/641590488f723272949e to your computer and use it in GitHub Desktop.
Vagrant OmniOS Crossbow Config
# -*- 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