fixed autodeflate option letter

This commit is contained in:
Beth Parker 2025-03-28 15:09:17 -05:00
parent 034ea34111
commit 830b402277

View file

@ -25,10 +25,10 @@ where:
-i ip_address Specify IP address to assign (default to next available in subnet) -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) -b branch Specify branch of build_ansible to use (defult prod)
-a attach Attach existing extra disk (use full path to disK, default none) -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 # 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 do
case "$flag" in case "$flag" in
n) name=${OPTARG};; n) name=${OPTARG};;
@ -42,7 +42,7 @@ do
i) ip=${OPTARG};dhcp_opts+=" -i $ip";; i) ip=${OPTARG};dhcp_opts+=" -i $ip";;
b) branch=${OPTARG};; b) branch=${OPTARG};;
a) attach=${OPTARG};; a) attach=${OPTARG};;
d) deflate=${OPTARG};; f) deflate=${OPTARG};;
h) ;& h) ;&
*) echo "$usage";exit;; *) echo "$usage";exit;;
esac esac