Vagrantfile in lxd-common-0.9.8 vs Vagrantfile in lxd-common-0.9.9
- old
+ new
@@ -1,11 +1,11 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
-Vagrant.configure('2') do |config|
- config.vm.box = 'ubuntu/xenial64'
+Vagrant.configure("2") do |config|
+ config.vm.box = "ubuntu/xenial64"
# config.vm.box = 'ubuntu/trusty64'
- config.vm.provision 'chef_apply' do |chef|
- chef.recipe = File.read 'spec/provision_recipe.rb'
+ config.vm.provision "chef_apply" do |chef|
+ chef.recipe = File.read "spec/provision_recipe.rb"
end
end