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

Violette Roche-Montane
21.03.2014 311137a4703c3a69572cc911068da2930331a056
Checkpoint for OPENDJ-1303 "opendj-cli"
- Fixed build in SetupCli. Added message + replaced importLDIF to getLDIFFile.
2 files modified
5 ■■■■ changed files
opendj-cli/src/main/resources/com/forgerock/opendj/cli/cli.properties 3 ●●●●● patch | view | raw | blame | history
opendj-server/src/main/java/org/forgerock/opendj/server/setup/cli/SetupCli.java 2 ●●● patch | view | raw | blame | history
opendj-cli/src/main/resources/com/forgerock/opendj/cli/cli.properties
@@ -840,4 +840,7 @@
 to delete
INFO_DESCRIPTION_TIME_LIMIT=Maximum length of \
 time (in seconds) to spend processing
INFO_DESCRIPTION_IMPORTLDIF=Path to an LDIF file \
 containing data that should be added to the Directory Server database. \
 Multiple LDIF files may be provided by using this option multiple times
 
opendj-server/src/main/java/org/forgerock/opendj/server/setup/cli/SetupCli.java
@@ -225,7 +225,7 @@
        cli = addGlobal(CommonArguments.getCLI());
        baseDN = addGlobal(CommonArguments.getBaseDN());
        addBaseEntry = addGlobal(CommonArguments.getAddBaseEntry());
        importLDIF = addGlobal(CommonArguments.getImportLDIF());
        importLDIF = addGlobal(CommonArguments.getLDIFFile(INFO_DESCRIPTION_IMPORTLDIF.get()));
        rejectedImportFile = addGlobal(CommonArguments.getRejectedImportLdif());
        skippedImportFile = addGlobal(CommonArguments.getSkippedImportFile());
        sampleData = addGlobal(CommonArguments.getSampleData());