From 67f09d0ffd2d2f596e3b9a42dd9578f2995a0d82 Mon Sep 17 00:00:00 2001 From: bol-van Date: Wed, 8 Feb 2023 18:24:00 +0300 Subject: [PATCH] install_easy: clear ip lists if MODE_FILTER=hostlist --- install_easy.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/install_easy.sh b/install_easy.sh index f33aacd..30b43dc 100755 --- a/install_easy.sh +++ b/install_easy.sh @@ -650,8 +650,9 @@ download_list() [ -x "$GET_LIST" ] && { echo \* downloading blocked ip/host list - # can be txt or txt.gz. do not clear ip lists if no download option specified - [ -n "$GETLIST" ] && "$IPSET_DIR/clear_lists.sh" + # can be txt or txt.gz. + # do not clear ip lists if no download option specified + [ -n "$GETLIST" -o "$MODE_FILTER" != ipset ] && "$IPSET_DIR/clear_lists.sh" "$GET_LIST" } }