OPENDJ-2555 Fix setup man page
Generated setup man page should not print a backend type as default
value because this information vary whether the server distribution is
OEM or not.
Fix just catch the argument and prints a generic message instead.
| | |
| | | a.setDefaultValue("localhost.localdomain"); |
| | | } |
| | | |
| | | // Return a generic message as default backend type depends on the server distribution. |
| | | if (a.getName().equalsIgnoreCase(OPTION_LONG_BACKEND_TYPE)) { |
| | | a.setDefaultValue("Depends on the distribution"); |
| | | } |
| | | |
| | | // The help argument should be added at the end. |
| | | if (isUsageArgument(a)) { |
| | | helpArgument = a; |