ホストマシンの構成は次のとおりです。
hedin@home:~/123$ lsb_release -rcd
Description: Ubuntu 14.04.5 LTS
Release: 14.04
Codename: trusty
hedin@home:~/123$ vagrant -v
Vagrant 1.7.2
ansible_local プロビジョニングを使用してゲストをデプロイしようとしています。これは私のVagrantファイルです:
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/trusty64"
# Run Ansible from the Vagrant VM
config.vm.provision "ansible_local" do |ansible|
ansible.playbook = "playbook.yml"
end
end
デプロイしようとすると、次の出力が表示されます。
hedin@home:~/123$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
There are errors in the configuration of this machine. Please fix
the following errors and try again:
vm:
* The '' provisioner could not be found.
どうすればこれを修正できますか?