summaryrefslogtreecommitdiffstats
path: root/ipaserver
diff options
context:
space:
mode:
authorDavid Kupka <dkupka@redhat.com>2014-11-24 08:49:05 -0500
committerPetr Vobornik <pvoborni@redhat.com>2014-11-26 14:33:23 +0100
commit3a6d714bb229f8dd68ae219d94283f05cf57a6d7 (patch)
tree6922e447a8141f0f11697ce8db0f27242ecdde8c /ipaserver
parent4e99663379b333e2dd851f06a786c705c3e07e4b (diff)
downloadfreeipa-3a6d714bb229f8dd68ae219d94283f05cf57a6d7.tar.gz
freeipa-3a6d714bb229f8dd68ae219d94283f05cf57a6d7.tar.xz
freeipa-3a6d714bb229f8dd68ae219d94283f05cf57a6d7.zip
Use singular in help metavars + update man pages.
https://fedorahosted.org/freeipa/ticket/4695 Reviewed-By: Martin Basti <mbasti@redhat.com>
Diffstat (limited to 'ipaserver')
-rw-r--r--ipaserver/install/ipa_replica_prepare.py8
1 files changed, 4 insertions, 4 deletions
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")