From 66d26269a83229b7340f7ace06dfc715c04df7d8 Mon Sep 17 00:00:00 2001 From: Jan Macku Date: Thu, 12 Sep 2019 12:32:36 +0200 Subject: Repalace hardcoded tests for yes and no with testing functions Resolve issue: #42 --- network-scripts/ifdown-ipv6 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'network-scripts/ifdown-ipv6') diff --git a/network-scripts/ifdown-ipv6 b/network-scripts/ifdown-ipv6 index 7ba3efdc..5bc08d31 100755 --- a/network-scripts/ifdown-ipv6 +++ b/network-scripts/ifdown-ipv6 @@ -62,7 +62,7 @@ if [ $? != 0 -a $? != 11 ]; then exit 1 fi -if [ ! "$IPV6_SET_SYSCTLS" = "no" ]; then +if ! is_false "$IPV6_SET_SYSCTLS"; then # Switch some sysctls to secure mode /sbin/sysctl -e -w net.ipv6.conf.$SYSCTLDEVICE.forwarding=0 >/dev/null 2>&1 /sbin/sysctl -e -w net.ipv6.conf.$SYSCTLDEVICE.accept_ra=0 >/dev/null 2>&1 @@ -119,7 +119,7 @@ if [ $? = 0 -o $? = 11 ]; then fi # Shutdown of 6to4, if configured -if [ "$valid6to4config" = "yes" ]; then +if is_true "$valid6to4config"; then if [ -n "$IPV6TO4_ROUTING" ]; then # Delete routes to local networks for devsuf in $IPV6TO4_ROUTING; do -- cgit v1.2.1