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