We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad5c246 commit 2fb93c6Copy full SHA for 2fb93c6
blockcheck.sh
@@ -361,11 +361,13 @@ check_system()
361
Linux)
362
PKTWS="$NFQWS"
363
PKTWSD=nfqws
364
- if tpws_can_fix_seg ; then
365
- echo tpws supports --fix-seg on this system
366
- FIX_SEG='--fix-seg'
367
- else
368
- echo tpws does not support --fix-seg on this system
+ if [ -x "$TPWS" ] ; then
+ if tpws_can_fix_seg ; then
+ echo tpws supports --fix-seg on this system
+ FIX_SEG='--fix-seg'
+ else
369
+ echo tpws does not support --fix-seg on this system
370
+ fi
371
fi
372
linux_fwtype
373
[ "$FWTYPE" = iptables -o "$FWTYPE" = nftables ] || {
0 commit comments