diff --git a/plugins/inventory/vmware.py b/plugins/inventory/vmware.py index 27330b8bcd..1d533a5e15 100755 --- a/plugins/inventory/vmware.py +++ b/plugins/inventory/vmware.py @@ -115,7 +115,7 @@ class VMwareInventory(object): else: cache_max_age = 0 cache_stat = os.stat(cache_file) - if (cache_stat.st_mtime + cache_max_age) < time.time(): + if (cache_stat.st_mtime + cache_max_age) >= time.time(): with open(cache_file) as cache: return json.load(cache) return default