From 6b240433b67509ab4ae1f03a1f2742896bb64600 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Mon, 20 May 2019 21:30:57 +0200 Subject: [PATCH] Update vagrant.py (#56568) `inventory_file` has been renamed to `inventory_path`. --- contrib/inventory/vagrant.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/inventory/vagrant.py b/contrib/inventory/vagrant.py index df3e899e37b..96517c30d37 100755 --- a/contrib/inventory/vagrant.py +++ b/contrib/inventory/vagrant.py @@ -7,7 +7,7 @@ Example Vagrant configuration using this script: config.vm.provision :ansible do |ansible| ansible.playbook = "./provision/your_playbook.yml" - ansible.inventory_file = "./provision/inventory/vagrant.py" + ansible.inventory_path = "./provision/inventory/vagrant.py" ansible.verbose = true end """