]
SBS JIRA Integration updated AS7-3995:
--------------------------------------
Git Pull Request:
make add-users.sh/bat script have domain directory location a
parameter
-----------------------------------------------------------------------
Key: AS7-3995
URL:
https://issues.jboss.org/browse/AS7-3995
Project: Application Server 7
Issue Type: Feature Request
Components: Domain Management
Affects Versions: 7.1.0.Final
Environment: all
Reporter: Nicholas DiPiazza
Assignee: Flemming Harms
Fix For: 7.1.2.Final (EAP), 7.2.0.Alpha1
add-users.sh / add-users.bat hard codes the location of the domains directory.
Would be very useful for some deployments if this were optional so that the domain could
be in a different directory.
So...
org.jboss.as.domain.management.security.AddPropertiesUser
private boolean findFiles(final String jbossHome, final List<File>
foundFiles, final String fileName) {
File standaloneProps = new File(jbossHome +
"/standalone/configuration/" + fileName);
if (standaloneProps.exists()) {
foundFiles.add(standaloneProps);
}
File domainProps = new File(jbossHome + "/domain/configuration/" +
fileName);
if (domainProps.exists()) {
foundFiles.add(domainProps);
}
Could become:
private boolean findFiles(final String jbossHome, final List<File>
foundFiles, final String fileName) {
File standaloneProps = new File(jbossHome +
"/standalone/configuration/" + fileName);
if (standaloneProps.exists()) {
foundFiles.add(standaloneProps);
}
File domainProps = new File((DOMAIN_ROOT_DIRECTORY == NULL ? jbossHome :
DOMAIN_ROOT_DIRECTORY)+ "/domain/configuration/" + fileName);
if (domainProps.exists()) {
foundFiles.add(domainProps);
}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: