* [ 1652376 ] Silent install and web port <> 80
This commit is contained in:
parent
95700fa18e
commit
9476cf2687
|
@ -928,7 +928,10 @@ public class ConfigurationData
|
||||||
p_panel.fJavaType.setSelectedIndex(0);
|
p_panel.fJavaType.setSelectedIndex(0);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
m_javaConfig[index].init();
|
{
|
||||||
|
if (getJavaHome() == null)
|
||||||
|
m_javaConfig[index].init();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1047,7 +1050,14 @@ public class ConfigurationData
|
||||||
p_panel.fAppsType.setSelectedIndex(0);
|
p_panel.fAppsType.setSelectedIndex(0);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
m_appsConfig[index].init();
|
{
|
||||||
|
if (getAppsServerDeployDir() == null ||
|
||||||
|
getAppsServerJNPPort() <= 0 ||
|
||||||
|
getAppsServerSSLPort() <= 0 ||
|
||||||
|
getAppsServerWebPort() <= 0)
|
||||||
|
m_appsConfig[index].init();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1333,7 +1343,9 @@ public class ConfigurationData
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
m_databaseConfig[index].init();
|
if (getDatabasePort() <= 0)
|
||||||
|
m_databaseConfig[index].init();
|
||||||
|
|
||||||
if (p_panel != null)
|
if (p_panel != null)
|
||||||
{
|
{
|
||||||
String[] databases = m_databaseConfig[index].discoverDatabases(selected);
|
String[] databases = m_databaseConfig[index].discoverDatabases(selected);
|
||||||
|
|
Loading…
Reference in New Issue