[jboss-jira] [JBoss JIRA] (AS7-3995) make add-users.sh/bat script have domain directory location a parameter
Nicholas DiPiazza (JIRA)
jira-events at lists.jboss.org
Thu Mar 1 17:34:36 EST 2012
Nicholas DiPiazza created AS7-3995:
--------------------------------------
Summary: 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: ConfigAdmin
Affects Versions: 7.1.0.Final
Environment: all
Reporter: Nicholas DiPiazza
Assignee: Thomas Diesler
Priority: Minor
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: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list