diff options
| author | David Kupka <dkupka@redhat.com> | 2014-11-24 08:49:05 -0500 |
|---|---|---|
| committer | Petr Vobornik <pvoborni@redhat.com> | 2014-11-26 14:33:23 +0100 |
| commit | 3a6d714bb229f8dd68ae219d94283f05cf57a6d7 (patch) | |
| tree | 6922e447a8141f0f11697ce8db0f27242ecdde8c /install/tools/ipa-server-install | |
| parent | 4e99663379b333e2dd851f06a786c705c3e07e4b (diff) | |
| download | freeipa-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-server-install')
| -rwxr-xr-x | install/tools/ipa-server-install | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/install/tools/ipa-server-install b/install/tools/ipa-server-install index 1280b631d..11055aee3 100755 --- a/install/tools/ipa-server-install +++ b/install/tools/ipa-server-install @@ -180,7 +180,8 @@ def parse_options(): basic_group.add_option("--hostname", dest="host_name", help="fully qualified name of server") basic_group.add_option("--ip-address", dest="ip_addresses", type="ip", ip_local=True, action="append", default=[], - help="Master Server IP Address") + help="Master Server IP Address. This option can be used multiple times", + metavar="IP_ADDRESS") basic_group.add_option("-N", "--no-ntp", dest="conf_ntp", action="store_false", help="do not configure ntp", default=True) basic_group.add_option("--idstart", dest="idstart", default=namespace, type=int, @@ -285,8 +286,9 @@ def parse_options(): type="ip", help="Add a DNS forwarder. This option can be used multiple times") dns_group.add_option("--no-forwarders", dest="no_forwarders", action="store_true", default=False, help="Do not add any DNS forwarders, use root servers instead") - dns_group.add_option("--reverse-zone", dest="reverse_zones", help="The reverse DNS zone to use", - action="append", default=[]) + dns_group.add_option("--reverse-zone", dest="reverse_zones", + help="The reverse DNS zone to use. This option can be used multiple times", + action="append", default=[], metavar="REVERSE_ZONE") dns_group.add_option("--no-reverse", dest="no_reverse", action="store_true", default=False, help="Do not create reverse DNS zone") dns_group.add_option("--no-dnssec-validation", dest="no_dnssec_validation", action="store_true", |
