Unverified Commit 42f3f7e1 authored by Kroese's avatar Kroese Committed by GitHub
Browse files

Ignore case

parent dc3b61a7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ set -u

: ${DHCP:='N'}

if [ "$DHCP" = "Y" ]; then
if [[ "${DHCP}" == [Yy1]* ]]; then
  PORT=5555
  IP="127.0.0.1"
else