Update nftables check

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

View File

@ -85,10 +85,13 @@ This version of CentOS is too old and unsupported."
exit exit
fi fi
if [ "$os" = "centos" ] && grep -qs "hwdsl2 VPN script" /etc/sysconfig/nftables.conf; then 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." echo "This system has nftables enabled, which is not supported by this installer."
exit exit
fi fi
fi
# Detect environments where $PATH does not include the sbin directories # Detect environments where $PATH does not include the sbin directories
if ! grep -q sbin <<< "$PATH"; then if ! grep -q sbin <<< "$PATH"; then