如何使用 vagrant 1.7.4 设置 ansible_local?

How to setup ansible_local with vagrant 1.7.4?

我的主机配置如下:

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.

我该如何解决这个问题?

Vagrant v1.7 版本存在导致此问题的错误:

$ sudo dpkg -i ./vagrant_1.7.4_x86_64.deb
(Reading database ... 57030 files and directories currently installed.)
Preparing to unpack ./vagrant_1.7.4_x86_64.deb ...
Unpacking vagrant (1:1.7.4) over (1:1.7.3) ...
Setting up vagrant (1:1.7.4) ...
$ 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 'ansible_local' provisioner could not be found.

升级到当前版本 1.8.5(或至少 1.8.0):

$ sudo dpkg -i vagrant_1.8.0_x86_64.deb
(Reading database ... 57030 files and directories currently installed.)
Preparing to unpack vagrant_1.8.0_x86_64.deb ...
Unpacking vagrant (1:1.8.0) over (1:1.7.4) ...
Setting up vagrant (1:1.8.0) ...
$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Importing base box 'ubuntu/trusty64'...
==> default: Matching MAC address for NAT networking...
==> default: Checking if box 'ubuntu/trusty64' is up to date...