From 8568f34a58ef862362c123ebdddd2d16de12f3b8 Mon Sep 17 00:00:00 2001 From: Kroese Date: Sat, 6 May 2023 13:23:34 +0200 Subject: [PATCH] Ignore case --- run/check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run/check.sh b/run/check.sh index 3c2d69a..0b74eb7 100644 --- a/run/check.sh +++ b/run/check.sh @@ -5,7 +5,7 @@ set -u : ${DHCP:='N'} -if [ "$DHCP" = "Y" ]; then +if [[ "${DHCP}" == [Yy1]* ]]; then PORT=5555 IP="127.0.0.1" else