Created
March 15, 2016 12:20
-
-
Save faizalmansor/9609945a294403d325db to your computer and use it in GitHub Desktop.
Vagrantfile for official Freebsd vagrant box
This file contains 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.guest = :freebsd | |
config.vm.synced_folder ".", "/vagrant", id: "vagrant-root", disabled: true | |
config.vm.box = "freebsd/FreeBSD-10.2-STABLE" | |
config.ssh.shell = "sh" | |
config.vm.base_mac = "080027D14C66" | |
config.vm.provider :virtualbox do |vb| | |
vb.customize ["modifyvm", :id, "--memory", "1024"] | |
vb.customize ["modifyvm", :id, "--cpus", "1"] | |
vb.customize ["modifyvm", :id, "--hwvirtex", "on"] | |
vb.customize ["modifyvm", :id, "--audio", "none"] | |
vb.customize ["modifyvm", :id, "--nictype1", "virtio"] | |
vb.customize ["modifyvm", :id, "--nictype2", "virtio"] | |
end | |
config.vm.network "private_network", ip: "192.168.33.10" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Replace the Vagrantfile that was automatically created when you initially run
vagrant init
entirely with this vagrantfile.