@@ -, +, @@ koha-create script -> Without patch you see the getent error message -> With patch you see usage and "Missing instance name" message --- debian/scripts/koha-create | 4 ++++ 1 file changed, 4 insertions(+) --- a/debian/scripts/koha-create +++ a/debian/scripts/koha-create @@ -552,6 +552,10 @@ set_authorities_indexing_mode $AUTHORITIES_INDEXING_MODE $ZEBRA_MARC_FORMAT name="$1" +if [ "$name" = "" ]; then + usage ; die "Missing instance name" +fi + set_upload_path $name if [ "$USE_MEMCACHED" = "yes" ]; then --