rmeove ext requirement for yaml inventory plugin

returns to the state before 2.4 made it a requirement
fixes #30855
pull/4420/head
Brian Coca 2017-09-27 09:53:56 -04:00 committed by Brian Coca
parent c2af15ce74
commit 82de2e1865
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ class InventoryModule(BaseFileInventoryPlugin):
valid = False
if super(InventoryModule, self).verify_file(path):
file_name, ext = os.path.splitext(path)
if ext and ext in C.YAML_FILENAME_EXTENSIONS:
if not ext or ext in C.YAML_FILENAME_EXTENSIONS:
valid = True
return valid