Update nftables check

This commit is contained in:
hwdsl2 2022-05-22 22:30:32 -05:00
parent cec64b77ca
commit 19750a5430

View File

@ -85,9 +85,12 @@ This version of CentOS is too old and unsupported."
exit
fi
if [ "$os" = "centos" ] && grep -qs "hwdsl2 VPN script" /etc/sysconfig/nftables.conf; then
echo "This system has nftables enabled, which is not supported by this installer."
exit
if [ "$os" = "centos" ]; then
if grep -qs "hwdsl2 VPN script" /etc/sysconfig/nftables.conf \
|| systemctl is-active --quiet nftables 2>/dev/null; then
echo "This system has nftables enabled, which is not supported by this installer."
exit
fi
fi
# Detect environments where $PATH does not include the sbin directories