From 0b748a3ac5960225ae35f24f7035ce64732d0d3f Mon Sep 17 00:00:00 2001 From: Tony Ambardar Date: Mon, 8 Jan 2018 03:50:26 -0800 Subject: [PATCH] sqm-scripts: Fix return value bug in postrm script The script removes the UCI option ucitrack.@sqm[0] if present and then returns success. If that UCI option is already absent however, the script incorrectly returns failure, which blocks upgrade of the luci-app-sqm package. Signed-off-by: Tony Ambardar --- net/sqm-scripts/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/sqm-scripts/Makefile b/net/sqm-scripts/Makefile index 3aa81b18fe..4b28755f7f 100644 --- a/net/sqm-scripts/Makefile +++ b/net/sqm-scripts/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=sqm-scripts PKG_SOURCE_VERSION:=8217081f7e52af342c362b29480461575c496387 PKG_VERSION:=1.1.3 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_LICENSE:=GPLv2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_RELEASE).tar.xz @@ -80,7 +80,7 @@ uci -q get ucitrack.@sqm[0] > /dev/null && { uci delete ucitrack.@sqm[0] uci del_list ucitrack.@firewall[0].affects=sqm uci commit -} +} || exit 0 endef $(eval $(call BuildPackage,sqm-scripts)) -- 2.30.2