Fix for issue #3802 (script launcher return codes are not correct)
we now unify _script-util.sh return code: we return 0
(success) or 1 (error).
Additional error messages have been also added in order to send
a better feedback to the user.
| | |
| | | RETURN_CODE=$? |
| | | if [ ${RETURN_CODE} -ne 0 ] |
| | | then |
| | | exit ${RETURN_CODE} |
| | | exit 1 |
| | | fi |
| | | fi |
| | | fi |
| | |
| | | |
| | | INFO_UNCONFIGURE_USAGE_DESCRIPTION_1656=This utility unsets the instance location |
| | | INFO_DESCRIPTION_CHECK_OPTIONS_1657=Checks options are valid |
| | | FATAL_ERR_INTERNAL_1658=Internal Error: %s |
| | | FATAL_ERR_INSTALL_ROOT_NOT_SPECIFIED_1659=INSTALL_ROOT property not specified |
| | | FATAL_ERR_INSTANCE_ROOT_NOT_SPECIFIED_1660=INSTANCE_ROOT property not specified |
| | | FATAL_ERR_CONFIG_LDIF_NOT_FOUND_1661=The "config.ldif" file is not present in \ |
| | | the instance directory %s.\nInstance directory is referenced by %s |
| | | |
| | | |
| | | |