summaryrefslogtreecommitdiff
path: root/Vagrantfile
blob: 5d0a39d23927fc269a3bcb951514b361890ff431 (plain)
1
2
3
4
5
6
7
8
9
10
11
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
  config.vm.box = "ubuntu/xenial64"
  config.vm.provision :chef_apply do |chef|
    file = File.join(__dir__, "config/chef_apply.rb")
    chef.recipe = IO.read(file)
    chef.version = "latest"
    chef.install = "force"
  end
end