«Path» pour Shell Provisioner n'existe pas sur le système hôte:

Vagrant.configure("2") do |config|

  config.vm.box = "ubuntu/xenial64"

  dir = File.expand_path("..", __FILE__)
  puts "DIR: #{dir}"

  config.vm.provision "shell", path: File.join(dir, "script.sh")

end
Concerned Centipede