From 313e1a2d6c4e84ee21b4a092bc3f6ec08df3d908 Mon Sep 17 00:00:00 2001 From: fred Date: Thu, 15 Feb 2024 18:07:23 +0100 Subject: [PATCH] SWARM 3 DAYS OLD CLEANING --- RUNTIME/NODE.refresh.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RUNTIME/NODE.refresh.sh b/RUNTIME/NODE.refresh.sh index 6cbfd616..bda5bcec 100755 --- a/RUNTIME/NODE.refresh.sh +++ b/RUNTIME/NODE.refresh.sh @@ -71,7 +71,7 @@ if [[ -d ~/.zen/tmp/${IPFSNODEID} ]]; then fi -## CLEANING SWARM 30 DAYS OLD -find ~/.zen/tmp/swarm/ -mtime +30 -type d -exec rm -Rf '{}' \; +## CLEANING SWARM 3 DAYS OLD +find ~/.zen/tmp/swarm/ -mtime +3 -type d -exec rm -Rf '{}' \; exit 0