From 58b28c5911b4451f84861c4e3188ceffd37803a4 Mon Sep 17 00:00:00 2001 From: "Ycarus (Yannick Chabanois)" Date: Thu, 16 Jul 2020 15:59:15 +0200 Subject: [PATCH] Little fix --- luci-app-omr-bypass/root/etc/init.d/omr-bypass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luci-app-omr-bypass/root/etc/init.d/omr-bypass b/luci-app-omr-bypass/root/etc/init.d/omr-bypass index aaccb4061..dbbeee800 100755 --- a/luci-app-omr-bypass/root/etc/init.d/omr-bypass +++ b/luci-app-omr-bypass/root/etc/init.d/omr-bypass @@ -570,7 +570,7 @@ stop_service() { ip6tables-save --counters | grep -v omr-bypass6 | ip6tables-restore -w --counters ip6tables-save --counters | grep -v omr6_dst | ip6tables-restore -w --counters for setname in $(ipset -n list | grep "omr_"); do - ipset destroy "$setname" 2>/dev/null || true + ipset -q destroy "$setname" 2>/dev/null || true done }