From 48ab3006b80fc4e0e414109afe8181aaaee14faf Mon Sep 17 00:00:00 2001 From: David Bailey Date: Wed, 7 Oct 2015 18:00:09 +0100 Subject: [PATCH] Grep for 'DROP' as well as 'REJECT' --- openvpn-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index dbf7084..03ac5de 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -290,7 +290,7 @@ crl-verify /etc/openvpn/easy-rsa/pki/crl.pem" >> /etc/openvpn/server.conf firewall-cmd --permanent --zone=public --add-port=$PORT/udp firewall-cmd --permanent --zone=trusted --add-source=10.8.0.0/24 fi - if iptables -L | grep -q REJECT; then + if iptables -L | grep -q 'REJECT|DROP'; then # If iptables has at least one REJECT rule, we asume this is needed. # Not the best approach but I can't think of other and this shouldn't # cause problems.