From 969de61a99e22244ef1a678b248a899798c3c2f3 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Tue, 14 Jul 2015 11:17:30 -0400 Subject: 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 --- .../java-tools/src/com/netscape/cmstools/tps/profile/ProfileCLI.java | 5 +++++ .../src/com/netscape/cmstools/tps/profile/ProfileModifyCLI.java | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'base/java-tools/src/com/netscape') 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); -- cgit