aboutsummaryrefslogtreecommitdiff
path: root/net/sqm-scripts
diff options
context:
space:
mode:
authorToke Høiland-Jørgensen <toke@toke.dk>2022-01-21 21:56:16 +0100
committerToke Høiland-Jørgensen <toke@toke.dk>2022-02-01 23:30:17 +0100
commit698af2eb997d1872d3c4332c19979f9460e105b5 (patch)
treeb60b62f4c83d32c51b0da2e61747f44041fbf4fa /net/sqm-scripts
parent270e8eabc3c953ea22e545a33ce12af3700748aa (diff)
sqm-scripts: Change iptables dependency to iptables-nft
There's only one of the shaper scripts (simple.qos) that uses iptables, and it should be fine with iptables-nft for compatibility with the new default nft-based firewall. Confusingly, we still need the iptables-mod-ipopt package to get the DSCP match module; we never used CONNMARK, though, so drop the iptables-mod-conntrack-extra dependency while we're at it. Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
Diffstat (limited to 'net/sqm-scripts')
-rw-r--r--net/sqm-scripts/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/sqm-scripts/Makefile b/net/sqm-scripts/Makefile
index f23a0adac..421f6f411 100644
--- a/net/sqm-scripts/Makefile
+++ b/net/sqm-scripts/Makefile
@@ -24,8 +24,7 @@ include $(INCLUDE_DIR)/package.mk
define Package/sqm-scripts
SECTION:=net
CATEGORY:=Base system
- DEPENDS:=+tc +kmod-sched-cake +kmod-ifb +iptables \
- +iptables-mod-ipopt +iptables-mod-conntrack-extra
+ DEPENDS:=+tc +kmod-sched-cake +kmod-ifb +iptables-nft +iptables-mod-ipopt
TITLE:=SQM Scripts (QoS)
PKGARCH:=all
endef