Fix IPV6 var not being defined on stop

This commit is contained in:
Ludovic Poujol 2020-02-21 16:26:41 +01:00
parent 60ca9f67b2
commit 30041b8949
Signed by: lpoujol
GPG Key ID: 6F563E6A4DD5DCEF
2 changed files with 6 additions and 4 deletions

View File

@ -51,6 +51,11 @@ BROAD='255.255.255.255'
PORTSROOT='0:1023'
PORTSUSER='1024:65535'
# Configuration
oldconfigfile="/etc/firewall.rc"
configfile="/etc/default/minifirewall"
IPV6=$(grep "IPV6=" /etc/default/minifirewall | awk -F '=' -F "'" '{print $2}')
case "$1" in
start)
@ -109,9 +114,6 @@ $IPT -N LOG_ACCEPT
$IPT -A LOG_ACCEPT -j LOG --log-prefix '[IPTABLES ACCEPT] : '
$IPT -A LOG_ACCEPT -j ACCEPT
# Configuration
oldconfigfile="/etc/firewall.rc"
configfile="/etc/default/minifirewall"
if test -f $oldconfigfile; then
echo "$oldconfigfile is deprecated, rename to $configfile" >&2

View File

@ -13,7 +13,7 @@ IPV6=on
INTLAN='192.168.0.2/32'
# Trusted IPv4 addresses for private and semi-public services
TRUSTEDIPS='62.212.121.90 88.179.18.233 31.170.8.4 31.170.9.129'
TRUSTEDIPS=''
# Privilegied IPv4 addresses for semi-public services
# (no need to add again TRUSTEDIPS)