From 38e3ce79f26bb2c08d754310b4cfe2744331cbff Mon Sep 17 00:00:00 2001 From: Jayne Passmore Date: Wed, 2 Apr 2025 18:38:05 -0500 Subject: [PATCH] fixed flag issue --- scripts/create.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/create.sh b/scripts/create.sh index fd0d802..c4f68b0 100644 --- a/scripts/create.sh +++ b/scripts/create.sh @@ -60,6 +60,7 @@ echo "" read -p "Is this correct (y/n)? " v;if [ "$v" != "y" ];then "Exiting, restart to reenter info"; exit;fi +dhcp_opts+=" -m $mac" if [ -n $subnet ]; then dhcp_opts=" -s $subnet";fi if [ -n $ip ]; then dhcp_opts+=" -i $ip";fi dhcp_opts+=" -m $mac"