summaryrefslogtreecommitdiffstats
path: root/base/java-tools/src/com/netscape/cmstools
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2015-07-14 11:17:30 -0400
committerMatthew Harmsen <mharmsen@redhat.com>2015-07-18 14:23:24 -0600
commit969de61a99e22244ef1a678b248a899798c3c2f3 (patch)
tree77ba2204ff7d667cc15b62d7d37d8d36814ec327 /base/java-tools/src/com/netscape/cmstools
parent476856a44ed1f96f630e19492a0d82ecac5db293 (diff)
downloadpki-969de61a99e22244ef1a678b248a899798c3c2f3.tar.gz
pki-969de61a99e22244ef1a678b248a899798c3c2f3.tar.xz
pki-969de61a99e22244ef1a678b248a899798c3c2f3.zip
Added pki-tps-profile man page.
A new man page has been added for the pki tps-profile CLI. The CLI has been modified to refer to the new man page. Some other man pages have been cleaned up as well. https://fedorahosted.org/pki/ticket/1271
Diffstat (limited to 'base/java-tools/src/com/netscape/cmstools')
-rw-r--r--base/java-tools/src/com/netscape/cmstools/tps/profile/ProfileCLI.java5
-rw-r--r--base/java-tools/src/com/netscape/cmstools/tps/profile/ProfileModifyCLI.java2
2 files changed, 6 insertions, 1 deletions
diff --git a/base/java-tools/src/com/netscape/cmstools/tps/profile/ProfileCLI.java b/base/java-tools/src/com/netscape/cmstools/tps/profile/ProfileCLI.java
index b27578ffc..7c68c8ebb 100644
--- a/base/java-tools/src/com/netscape/cmstools/tps/profile/ProfileCLI.java
+++ b/base/java-tools/src/com/netscape/cmstools/tps/profile/ProfileCLI.java
@@ -46,6 +46,11 @@ public class ProfileCLI extends CLI {
addModule(new ProfileMappingCLI(this));
}
+ @Override
+ public String getManPage() {
+ return "pki-tps-profile";
+ }
+
public void execute(String[] args) throws Exception {
client = parent.getClient();
diff --git a/base/java-tools/src/com/netscape/cmstools/tps/profile/ProfileModifyCLI.java b/base/java-tools/src/com/netscape/cmstools/tps/profile/ProfileModifyCLI.java
index 87580cdaf..c042552ab 100644
--- a/base/java-tools/src/com/netscape/cmstools/tps/profile/ProfileModifyCLI.java
+++ b/base/java-tools/src/com/netscape/cmstools/tps/profile/ProfileModifyCLI.java
@@ -50,7 +50,7 @@ public class ProfileModifyCLI extends CLI {
}
public void createOptions() {
- Option option = new Option(null, "action", true, "Action: update (default), approve, reject, enable, disable.");
+ Option option = new Option(null, "action", true, "Action: update (default), submit, cancel, approve, reject, enable, disable.");
option.setArgName("action");
options.addOption(option);