mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-28 23:51:23 -07:00
parent
21f8c0bc96
commit
393124e462
1 changed files with 5 additions and 10 deletions
|
@ -38,16 +38,11 @@ class InventoryDirectory(object):
|
||||||
self.groups = {}
|
self.groups = {}
|
||||||
|
|
||||||
for i in self.names:
|
for i in self.names:
|
||||||
|
|
||||||
if i.endswith("~") or i.endswith(".orig") or i.endswith(".bak"):
|
# Skip files that end with certain extensions or characters
|
||||||
continue
|
for ext in ("~", ".orig", ".bak", ".ini", ".retry", ".pyc", ".pyo"):
|
||||||
if i.endswith(".ini"):
|
if i.endswith(ext):
|
||||||
# configuration file for an inventory script
|
continue
|
||||||
continue
|
|
||||||
if i.endswith(".retry"):
|
|
||||||
# this file is generated on a failed playbook and should only be
|
|
||||||
# used when run specifically
|
|
||||||
continue
|
|
||||||
# Skip hidden files
|
# Skip hidden files
|
||||||
if i.startswith('.') and not i.startswith('./'):
|
if i.startswith('.') and not i.startswith('./'):
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue