mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

kenneth_suter
06.44.2007 a52fe2b385c4d22833b34efbf29ae898933963b2
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java
@@ -593,7 +593,7 @@
    argList.add(getBackendName());
    argList.add("-t");
    argList.add(templatePath.getAbsolutePath());
    argList.add("-S");
    argList.add("-s"); // seed
    argList.add("0");
    String[] args = new String[argList.size()];
@@ -606,9 +606,10 @@
      if (result != 0)
      {
        String[] msgArgs = { Utils.stringArrayToString(args, " ") };
        throw new QuickSetupException(
            QuickSetupException.Type.CONFIGURATION_ERROR,
            getMsg("error-import-automatically-generated"), null);
            getMsg("error-import-automatically-generated", msgArgs), null);
      }
    } catch (Throwable t)
    {