Ver código fonte

openshift_checks: ignore hidden files in checks dir

load_checks: Ignore hidden files when scanning the directory for checks.
Miciah Masters 7 anos atrás
pai
commit
fac49680cb

+ 1 - 1
roles/openshift_health_checker/openshift_checks/__init__.py

@@ -173,7 +173,7 @@ def load_checks(path=None, subpkg=""):
             modules = modules + load_checks(os.path.join(path, name), subpkg + "." + name)
             continue
 
-        if name.endswith(".py") and name not in LOADER_EXCLUDES:
+        if name.endswith(".py") and not name.startswith(".") and name not in LOADER_EXCLUDES:
             modules.append(import_module(__package__ + subpkg + "." + name[:-3]))
 
     return modules