-
Bug
-
Resolution: Done
-
Minor
-
7.0.0.DR9
-
None
Description of problem:
wildfly-init-redhat.sh contains reload option in help message, but this option is not supported by the script and returns usage message.
How reproducible:
Always
Steps to Reproduce:
- cd EAP_HOME/bin/init.d/
- ./wildfly-init-redhat.sh reload
Actual results:
Usage: ./wildfly-init-redhat.sh {start|stop|status|restart|reload}
Expected results:
Reload option is not in "Usage message" or reload option is supported by the script.
Additional info:
- Name of this script will be renamed in EAP (
JBEAP-763) - 6.x bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=977794
- Part of script (case for reload is missing):
... case "$1" in start) start ;; stop) stop ;; restart) $0 stop $0 start ;; status) status ;; *) ## If no parameters are given, print which are avaiable. echo "Usage: $0 {start|stop|status|restart|reload}" exit 1 ;; esac
- is blocked by
-
JBEAP-2078 Scripts for running EAP as service on RHEL are missing
- Closed
- is cloned by
-
WFCORE-984 Scripts for running EAP as service on RHEL contains unsupported option "reload" in help message
- Resolved
- relates to
-
JBEAP-1569 Remove docs/contrib directory from EAP distribution
- Verified