From afcd5997b91570ad1403874071e38b639c59a402 Mon Sep 17 00:00:00 2001 From: Ganesh Maharaj Mahalingam Date: Thu, 12 Apr 2018 14:24:41 -0700 Subject: [PATCH] Vagrantfile: Fix default inventory path. Change to support multiple inventory path led to Vagrant environment not getting a default group_vars in it's inventory path. Using sample as the default path if none specified. Fix issue #2541 Signed-off-by: Ganesh Maharaj Mahalingam --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index cf174ef77..d0b6b73d1 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -54,7 +54,7 @@ end $box = SUPPORTED_OS[$os][:box] # if $inventory is not set, try to use example -$inventory = File.join(File.dirname(__FILE__), "inventory") if ! $inventory +$inventory = File.join(File.dirname(__FILE__), "inventory", "sample") if ! $inventory # if $inventory has a hosts file use it, otherwise copy over vars etc # to where vagrant expects dynamic inventory to be.