Add check for nftables

This commit is contained in:
hwdsl2 2022-05-19 23:59:26 -05:00
parent a209594d6f
commit b79880f219

View File

@ -81,6 +81,11 @@ 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
fi
# Detect environments where $PATH does not include the sbin directories
if ! grep -q sbin <<< "$PATH"; then
echo '$PATH does not include sbin. Try using "su -" instead of "su".'