tmux-fingers/Vagrantfile

13 lines
324 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 "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