Skip to content
Snippets Groups Projects
Commit 3dc11b67 authored by felmer's avatar felmer
Browse files

BIS-272: Installer assumes update only if installation path folder exists and...

BIS-272: Installer assumes update only if installation path folder exists and contains 'bin' and 'servers'.

SVN: 28292
parent 42599406
No related branches found
No related tags found
No related merge requests found
...@@ -79,8 +79,8 @@ public class GlobalInstallationContext ...@@ -79,8 +79,8 @@ public class GlobalInstallationContext
{ {
String installPath = data.getInstallPath(); String installPath = data.getInstallPath();
installDir = new File(installPath); installDir = new File(installPath);
isFirstTimeInstallation = (installDir.exists() == false); isUpdateInstallation = installationExists();
isUpdateInstallation = installDir.exists(); isFirstTimeInstallation = isUpdateInstallation == false;
String postgresBinPath = ""; String postgresBinPath = "";
if (isFirstTimeInstallation == false) if (isFirstTimeInstallation == false)
...@@ -99,6 +99,33 @@ public class GlobalInstallationContext ...@@ -99,6 +99,33 @@ public class GlobalInstallationContext
} }
} }
private static boolean installationExists()
{
if (installDir.exists() == false)
{
return false;
}
File[] files = installDir.listFiles();
boolean binExists = false;
boolean serversExists = false;
if (files != null)
{
for (File file : files)
{
String fileName = file.getName();
if (fileName.equals("bin"))
{
binExists = true;
}
if (fileName.equals("servers"))
{
serversExists = true;
}
}
}
return binExists && serversExists;
}
/** /**
* Return the data directory chosen for this installation. * Return the data directory chosen for this installation.
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment