dotfiles/dot_tmux/plugins/tmux-copycat/Vagrantfile

9 lines
267 B
Ruby
Raw Normal View History

2023-11-13 13:48:17 +01:00
VAGRANTFILE_API_VERSION = '2'
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define :ubuntu_two_five do |ubuntu|
ubuntu.vm.box = 'hashicorp/precise32'
ubuntu.vm.provision 'shell', path: 'vagrant_ubuntu_provisioning_two_five.sh'
end
end