summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-04-18 15:03:08 +0200
committerChristian Poessinger <christian@poessinger.com>2021-04-18 15:03:08 +0200
commitfe652067a0d4738f9bfd3c6c910daadbd35993a8 (patch)
treeac7dc8e11c4fab4b0d0184fe7fccd2c3ff86f923 /scripts
parent9f50a69dfbe7ec6ff72de56a89715d8e1c146a7b (diff)
downloadcommunity.vyos.net-fe652067a0d4738f9bfd3c6c910daadbd35993a8.tar.gz
community.vyos.net-fe652067a0d4738f9bfd3c6c910daadbd35993a8.zip
Revert "Filter out the upper level snapshot dir."
This reverts commit 9f50a69dfbe7ec6ff72de56a89715d8e1c146a7b.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/list-snapshots.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/scripts/list-snapshots.py b/scripts/list-snapshots.py
index f52f941..2f10a56 100755
--- a/scripts/list-snapshots.py
+++ b/scripts/list-snapshots.py
@@ -50,9 +50,6 @@ snapshots = []
for name in snapshot_names:
- if name == "snapshot/equuleus/":
- continue
-
snapshot = {}
snapshot['name'] = name
snapshot['files'] = list(filter(lambda s: re.search(name, s), files))