From eaee8d76c454da766cb49e2e4629498703fd12b1 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Mon, 15 Dec 2014 10:41:41 -0500 Subject: [PATCH] Fix a bug launching a custom inventory script under proot where we would never actually launch the job under proot --- awx/main/management/commands/inventory_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/management/commands/inventory_import.py b/awx/main/management/commands/inventory_import.py index 022d19a6fa..8455f92bef 100644 --- a/awx/main/management/commands/inventory_import.py +++ b/awx/main/management/commands/inventory_import.py @@ -472,7 +472,7 @@ def load_inventory_source(source, all_group=None, group_filter_re=None, if filename.endswith(".ini") or os.path.isdir(filename): continue load_inventory_source(filename, all_group, group_filter_re, - host_filter_re) + host_filter_re, is_custom=is_custom) else: all_group = all_group or MemGroup('all', os.path.dirname(source)) if os.access(source, os.X_OK):