From d508a490d91dc98d758160fe9b86e55af223d961 Mon Sep 17 00:00:00 2001 From: Rottler Tamas Date: Thu, 15 Feb 2024 18:42:17 +0100 Subject: [PATCH] no exception for vm names ending in _R --- vmw_snapshot_list | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vmw_snapshot_list b/vmw_snapshot_list index 7894b99..f66a6ef 100755 --- a/vmw_snapshot_list +++ b/vmw_snapshot_list @@ -104,8 +104,8 @@ def main(): continue snaplist = snapshots(vm.snapshot.rootSnapshotList, args.age) - if re.search('_R$', vm.name): - continue; + #if re.search('_R$', vm.name): + # continue; for s in snaplist: print("%s: %s" % (vm.name, s))