tmux-fingers/Vagrantfile

24 lines
730 B
Ruby
Raw Normal View History

2016-05-23 08:01:02 +02:00
# -*- mode: ruby -*-
# vi: set ft=ruby :
# requires nfs-utils on host
Vagrant.configure(2) do |config|
2016-07-14 22:48:01 +02:00
config.vm.define "bsd" do |machine|
machine.vm.box = "freebsd/FreeBSD-10.3-RELEASE"
machine.ssh.shell = "/bin/sh"
2016-05-23 08:01:02 +02:00
2016-07-14 22:48:01 +02:00
machine.vm.base_mac = "080027D14C66"
machine.vm.network "private_network", ip: "10.0.1.10", mac: "5CA1AB1E0001"
2018-03-11 00:21:51 +01:00
machine.vm.synced_folder ".", "/home/vagrant/shared", nfs: true, nfs_udp: false
2016-05-23 08:01:02 +02:00
2016-07-14 22:48:01 +02:00
machine.vm.provision "shell", path: './test/provisioning/bsd.sh'
end
config.vm.define "ubuntu" do |machine|
machine.vm.box = "ubuntu/trusty64"
machine.vm.synced_folder ".", "/home/vagrant/shared"
machine.vm.provision "shell", path: './test/provisioning/ubuntu.sh'
end
2016-05-23 08:01:02 +02:00
end