scripts: Improve error handling, when parameters are missing (#2854)

This commit is contained in:
Casper 2022-10-29 11:04:35 +02:00 committed by GitHub
parent caf2338201
commit 897d84f0f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 26 additions and 20 deletions

View file

@ -34,3 +34,13 @@ function _chown_var_mail_if_necessary
chown -R 5000:5000 /var/mail || return 1
fi
}
function _require_n_parameters_or_print_usage
{
local COUNT
COUNT=${1}
shift
[[ ${1:-} == 'help' ]] && { __usage ; exit 0 ; }
[[ ${#} -lt ${COUNT} ]] && { __usage ; exit 1 ; }
}