]
Brian Stansberry reassigned WFLY-9538:
--------------------------------------
Assignee: R Searls (was: Tomaz Cerar)
wsprovide.sh does not support the -secmgr setting properly
----------------------------------------------------------
Key: WFLY-9538
URL:
https://issues.jboss.org/browse/WFLY-9538
Project: WildFly
Issue Type: Bug
Components: Scripts
Affects Versions: 10.0.0.Final
Reporter: R Searls
Assignee: R Searls
wsprovide.sh, wsprovide.bat does not generate the cmd with the -secmgr flag in the
proper position. Changes to jboss-module.jar requires -segmgr to reside just after
the jboss-module.jar reference like this.
{code:java}
eval \"$JAVA\" $JAVA_OPTS \
-jar \""$JBOSS_HOME"/jboss-modules.jar\" \
*-secmgr \ *
-mp \""$JBOSS_HOME"/modules\" \
org.jboss.ws.tools.wsprovide \
'"$@"'
{code}
Current the old style and this new style value is passed in via the JAVA_OPTS env var.