diff options
author | Thorsten Scherf <tscherf@redhat.com> | 2014-11-11 15:38:01 +0100 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2014-11-14 15:38:52 +0100 |
commit | 8a3389d30c8f47d58e889a9772d68f5e70a4cd71 (patch) | |
tree | b76c67b920b15915732eabc134c5c3683a9df725 | |
parent | 2c1d40bf1f649edb82eafb29b7ce62a922e051f6 (diff) | |
download | freeipa-8a3389d30c8f47d58e889a9772d68f5e70a4cd71.tar.gz freeipa-8a3389d30c8f47d58e889a9772d68f5e70a4cd71.tar.xz freeipa-8a3389d30c8f47d58e889a9772d68f5e70a4cd71.zip |
Add help string on how to configure multiple DNS forwards for various cli tools
The man pages for various FreeIPA setup tools are more descriptive on how to
configure multiple DNS forwarders than the corresponding cli help. This patch
makes the cli help more verbose now for the following tools:
* ipa-dns-install
* ipa-replica-install
* ipa-server-install
https://fedorahosted.org/freeipa/ticket/4465
Reviewed-By: Martin Basti <mbasti@redhat.com>
-rwxr-xr-x | install/tools/ipa-dns-install | 2 | ||||
-rwxr-xr-x | install/tools/ipa-replica-install | 2 | ||||
-rwxr-xr-x | install/tools/ipa-server-install | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/install/tools/ipa-dns-install b/install/tools/ipa-dns-install index 1d4db5f1f..806c2e269 100755 --- a/install/tools/ipa-dns-install +++ b/install/tools/ipa-dns-install @@ -46,7 +46,7 @@ def parse_options(): default=[], action="append", type="ip", ip_local=True, help="Master Server IP Address") parser.add_option("--forwarder", dest="forwarders", action="append", - type="ip", help="Add a DNS forwarder") + 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", diff --git a/install/tools/ipa-replica-install b/install/tools/ipa-replica-install index 75bbe981b..3cd8c4161 100755 --- a/install/tools/ipa-replica-install +++ b/install/tools/ipa-replica-install @@ -107,7 +107,7 @@ def parse_options(): dns_group.add_option("--setup-dns", dest="setup_dns", action="store_true", default=False, help="configure bind with our zone") dns_group.add_option("--forwarder", dest="forwarders", action="append", - type="ip", help="Add a DNS forwarder") + 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", default=[], diff --git a/install/tools/ipa-server-install b/install/tools/ipa-server-install index 0257b14be..fb8db7aca 100755 --- a/install/tools/ipa-server-install +++ b/install/tools/ipa-server-install @@ -281,7 +281,7 @@ def parse_options(): dns_group.add_option("--setup-dns", dest="setup_dns", action="store_true", default=False, help="configure bind with our zone") dns_group.add_option("--forwarder", dest="forwarders", action="append", - type="ip", help="Add a DNS forwarder") + 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", |