From 521b72653cb697c9b1928ee8b3a56661b845043b Mon Sep 17 00:00:00 2001 From: downtownallday Date: Mon, 26 Oct 2020 15:46:19 -0400 Subject: [PATCH] Fix #4 --- setup/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/functions.sh b/setup/functions.sh index a4517397..3f138b87 100644 --- a/setup/functions.sh +++ b/setup/functions.sh @@ -246,5 +246,5 @@ function kernel_ipv6_lo_disabled() { # Returns 0 if ipv6 is disabled on the loopback adapter local v="$(sysctl -n net.ipv6.conf.lo.disable_ipv6)" [ "$v" == "1" ] && return 0 - return 0 + return 1 }