Ignore case

This commit is contained in:
Kroese 2023-05-06 13:23:34 +02:00 committed by GitHub
parent 9bf5bf44af
commit 8568f34a58

View File

@ -5,7 +5,7 @@ set -u
: ${DHCP:='N'}
if [ "$DHCP" = "Y" ]; then
if [[ "${DHCP}" == [Yy1]* ]]; then
PORT=5555
IP="127.0.0.1"
else