Start to fix script errors

master
Brie Bruns 2018-04-19 11:48:22 -06:00
parent e4f0b8f844
commit 87e76c75a3
1 changed files with 4 additions and 4 deletions

View File

@ -40,10 +40,10 @@ usage() {
while getopts "hcr:s:n:d:iob" opt; do
case $opt in
c) cpucount=("$OPTARG");;
r) ram=("$OPTARG");;
r) ram=("$OPTARG");;
s) storage=("$OPTARG");;
n) hostname=("$OPTARG");;
d) domain=("$OPTARG");;
n) hostname=("$OPTARG");;
d) domain=("$OPTARG");;
i) distro=("$OPTARG");;
o) ostype=("$OPTARG");;
b) bridge=("$OPTARG");;
@ -52,7 +52,7 @@ while getopts "hcr:s:n:d:iob" opt; do
done
if [[ -z $ram || -z $storage || -z $hostname || -z $domain || -z $bridge || $help = "yes" ]]; then
if [[ -z $ram || -z $storage || -z $hostname || -z $domain || -z $bridge || $help == "yes" ]]; then
echo "Error: Incorrect command usage, must provide all * flags."
usage
exit 1