summaryrefslogtreecommitdiffstats
path: root/install/tools/ipa-dns-install
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 /install/tools/ipa-dns-install
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 'install/tools/ipa-dns-install')
-rwxr-xr-xinstall/tools/ipa-dns-install8
1 files changed, 4 insertions, 4 deletions
diff --git a/install/tools/ipa-dns-install b/install/tools/ipa-dns-install
index 7d9bf6a8b..967057e1a 100755
--- a/install/tools/ipa-dns-install
+++ b/install/tools/ipa-dns-install
@@ -43,16 +43,16 @@ def parse_options():
sensitive=True, help="admin password")
parser.add_option("-d", "--debug", dest="debug", action="store_true",
default=False, help="print debugging information")
- parser.add_option("--ip-address", dest="ip_addresses",
+ parser.add_option("--ip-address", dest="ip_addresses", metavar="IP_ADDRESS",
default=[], action="append",
- type="ip", ip_local=True, help="Master Server IP Address")
+ type="ip", ip_local=True, help="Master Server IP Address. This option can be used multiple times")
parser.add_option("--forwarder", dest="forwarders", action="append",
type="ip", help="Add a DNS forwarder. This option can be used multiple times")
parser.add_option("--no-forwarders", dest="no_forwarders", action="store_true",
default=False, help="Do not add any DNS forwarders, use root servers instead")
parser.add_option("--reverse-zone", dest="reverse_zones",
- default=[], action="append",
- help="The reverse DNS zone to use")
+ default=[], action="append", 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 new reverse DNS zone")
parser.add_option("--no-dnssec-validation", dest="no_dnssec_validation", action="store_true",