Vagrantfile in image_optim_pack-0.3.0.20160905 vs Vagrantfile in image_optim_pack-0.3.0.20160927

- old
+ new

@@ -2,9 +2,17 @@ Vagrant.configure('2') do |config| # don't mess with keys config.ssh.insert_key = false + # doesn't make sense to check updates for local boxes + config.vm.box_check_update = false + + # there are no guest additions + config.vm.provider 'virtualbox' do |vb| + vb.check_guest_additions = false + end + # handle manually using rsync config.vm.synced_folder '.', '/vagrant', disabled: true { 'linux-x86_64' => 'boxes/centos-amd64.box',