diff --git a/lib/ansible/inventory/dir.py b/lib/ansible/inventory/dir.py index 50ac33d2b1b..46997d9be89 100644 --- a/lib/ansible/inventory/dir.py +++ b/lib/ansible/inventory/dir.py @@ -49,7 +49,7 @@ class InventoryDirectory(object): # used when run specifically continue # Skip hidden files - if i.startswith('.'): + if i.startswith('.') and not i.startswith('./'): continue # These are things inside of an inventory basedir if i in ("host_vars", "group_vars", "vars_plugins"):