Updated functions to provide code 200

for un-coded circumstances
This commit is contained in:
Asif Bacchus 2018-09-07 03:44:03 -06:00
parent 85ace3d5fd
commit bcf5d079a1
1 changed files with 4 additions and 3 deletions

View File

@ -216,7 +216,8 @@ function checkExist {
quit 102
fi
else
return 105
# this code shouldn't be executed, provide checkable return code
return 200
fi
}
@ -240,8 +241,8 @@ function ncMaint {
maintResult="$?"
return $maintResult
else
# this code shouldn't be executed, so note the situation for debugging
return 901
# this code shouldn't be executed, provide checkable return code
return 200
fi
}
### End of functions