From 830b4022774c23df18cae2c86549722a1efafada Mon Sep 17 00:00:00 2001 From: Beth Date: Fri, 28 Mar 2025 15:09:17 -0500 Subject: [PATCH] fixed autodeflate option letter --- scripts/create.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/create.sh b/scripts/create.sh index c1e4903..7e5f548 100644 --- a/scripts/create.sh +++ b/scripts/create.sh @@ -25,10 +25,10 @@ where: -i ip_address Specify IP address to assign (default to next available in subnet) -b branch Specify branch of build_ansible to use (defult prod) -a attach Attach existing extra disk (use full path to disK, default none) - -d autodeflate Autodeflate memory on use - default true, avoid for ipa-server" + -f autodeflate Autodeflate memory on use - default true, avoid for ipa-server" # process flags -while getopts "h:n:c:r:d:v:p:m:s:i:b:d:" flag +while getopts "h:n:c:r:d:v:p:m:s:i:b:f:" flag do case "$flag" in n) name=${OPTARG};; @@ -42,7 +42,7 @@ do i) ip=${OPTARG};dhcp_opts+=" -i $ip";; b) branch=${OPTARG};; a) attach=${OPTARG};; - d) deflate=${OPTARG};; + f) deflate=${OPTARG};; h) ;& *) echo "$usage";exit;; esac