Update vagrant.py (#56568) (#56676)

`inventory_file` has been renamed to `inventory_path`.

(cherry picked from commit 6b240433b6)
This commit is contained in:
Alicia Cozine 2019-05-21 11:29:13 -05:00 committed by GitHub
parent c8037a541e
commit 05424bec1a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@ Example Vagrant configuration using this script:
config.vm.provision :ansible do |ansible| config.vm.provision :ansible do |ansible|
ansible.playbook = "./provision/your_playbook.yml" ansible.playbook = "./provision/your_playbook.yml"
ansible.inventory_file = "./provision/inventory/vagrant.py" ansible.inventory_path = "./provision/inventory/vagrant.py"
ansible.verbose = true ansible.verbose = true
end end
""" """