diff options
author | David Kupka <[email protected]> | 2014-11-24 08:49:05 -0500 |
---|---|---|
committer | Petr Vobornik <[email protected]> | 2014-11-26 14:31:23 +0100 |
commit | 2f8c4e7b165609706a4af9f680579c0e47edaeca (patch) | |
tree | 268783996fd1153c099a0a4125da48b0facba313 /ipaserver | |
parent | a7a7e967580c8ef4fa4341aa8b8877128e7d822a (diff) | |
download | freeipa-2f8c4e7b165609706a4af9f680579c0e47edaeca.tar.gz freeipa-2f8c4e7b165609706a4af9f680579c0e47edaeca.tar.xz freeipa-2f8c4e7b165609706a4af9f680579c0e47edaeca.zip |
Use singular in help metavars + update man pages.
https://fedorahosted.org/freeipa/ticket/4695
Reviewed-By: Martin Basti <[email protected]>
Diffstat (limited to 'ipaserver')
-rw-r--r-- | ipaserver/install/ipa_replica_prepare.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ipaserver/install/ipa_replica_prepare.py b/ipaserver/install/ipa_replica_prepare.py index 3762f3270..91a6e413f 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") |