From 3a6d714bb229f8dd68ae219d94283f05cf57a6d7 Mon Sep 17 00:00:00 2001 From: David Kupka Date: Mon, 24 Nov 2014 08:49:05 -0500 Subject: Use singular in help metavars + update man pages. https://fedorahosted.org/freeipa/ticket/4695 Reviewed-By: Martin Basti --- ipaserver/install/ipa_replica_prepare.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ipaserver') diff --git a/ipaserver/install/ipa_replica_prepare.py b/ipaserver/install/ipa_replica_prepare.py index 59a9862d5..79fdf2f50 100644 --- a/ipaserver/install/ipa_replica_prepare.py +++ b/ipaserver/install/ipa_replica_prepare.py @@ -55,11 +55,11 @@ class ReplicaPrepare(admintool.AdminTool): parser.add_option("-p", "--password", dest="password", help="Directory Manager password (for the existing master)") parser.add_option("--ip-address", dest="ip_addresses", type="ip", - action="append", default=[], - help="add A and PTR records of the future replica") + action="append", default=[], metavar="IP_ADDRESS", + help="add A and PTR records of the future replica. This option can be used multiple times") parser.add_option("--reverse-zone", dest="reverse_zones", - action="append", default=[], - help="the reverse DNS zone to use") + action="append", default=[], metavar="REVERSE_ZONE", + help="the reverse DNS zone to use. This option can be used multiple times") parser.add_option("--no-reverse", dest="no_reverse", action="store_true", default=False, help="do not create reverse DNS zone") -- cgit