Vagrantfile in dynamoid-2.2.0 vs Vagrantfile in dynamoid-3.0.0

- old
+ new

@@ -1,5 +1,7 @@ +# frozen_string_literal: true + Vagrant.configure('2') do |config| # Choose base box config.vm.box = 'bento/ubuntu-16.04' config.vm.provider 'virtualbox' do |vb| @@ -14,14 +16,14 @@ config.vm.provision :salt do |salt| salt.masterless = true salt.minion_config = '.dev/vagrant/minion' # Pillars - salt.pillar({ + salt.pillar( 'ruby' => { - 'version' => '2.4.1', + 'version' => '2.4.1' } - }) + ) salt.run_highstate = true end end