Additional fixes for https://fedorahosted.org/freeipa/ticket/5438
-- Martin^3 Babinsky
From 2f6c7183bcfd3dc04e0a76b622bedb6db0b7feb8 Mon Sep 17 00:00:00 2001 From: Martin Babinsky <[email protected]> Date: Fri, 4 Dec 2015 20:09:46 +0100 Subject: [PATCH 2/2] add '--auto-forwarders' description to server/replica/DNS installer man pages https://fedorahosted.org/freeipa/ticket/5438 --- install/tools/man/ipa-dns-install.1 | 3 +++ install/tools/man/ipa-replica-install.1 | 3 +++ install/tools/man/ipa-server-install.1 | 3 +++ 3 files changed, 9 insertions(+) diff --git a/install/tools/man/ipa-dns-install.1 b/install/tools/man/ipa-dns-install.1 index 66afe7fae5e82f48c7dc4d7c763f0483a41ecda1..2f2d43db7d14fd2cf8b2190c74b5dc9cbca35d69 100644 --- a/install/tools/man/ipa-dns-install.1 +++ b/install/tools/man/ipa-dns-install.1 @@ -38,6 +38,9 @@ A forwarder is a DNS server where queries for a specific non\-resolvable address \fB\-\-no\-forwarders\fR Do not add any DNS forwarders, send non\-resolvable addresses to the DNS root servers. .TP +\fB\-\-auto\-forwarders\fR +Add DNS forwarders configured in /etc/resolv.conf to the list of forwarders used by IPA DNS. +.TP \fB\-\-reverse\-zone\fR=\fIREVERSE_ZONE\fR The reverse DNS zone to use. This option can be used multiple times to specify multiple reverse zones. .TP diff --git a/install/tools/man/ipa-replica-install.1 b/install/tools/man/ipa-replica-install.1 index 6b323c55cfbac6f9035291832a5efff348cdc403..68976e7f9d40e79df409d8ad61e38ea61fb292dd 100644 --- a/install/tools/man/ipa-replica-install.1 +++ b/install/tools/man/ipa-replica-install.1 @@ -146,6 +146,9 @@ the \fB\-\-no\-forwarders\fR option is specified. \fB\-\-no\-forwarders\fR Do not add any DNS forwarders. Root DNS servers will be used instead. .TP +\fB\-\-auto\-forwarders\fR +Add DNS forwarders configured in /etc/resolv.conf to the list of forwarders used by IPA DNS. +.TP \fB\-\-reverse\-zone\fR=\fIREVERSE_ZONE\fR The reverse DNS zone to use. This option can be used multiple times to specify multiple reverse zones. .TP diff --git a/install/tools/man/ipa-server-install.1 b/install/tools/man/ipa-server-install.1 index 8d79755c9f07697eb1533788edbc6027c8d6fbd5..7106e9ed57dee6bc4ce921c48459cd33522c7ac2 100644 --- a/install/tools/man/ipa-server-install.1 +++ b/install/tools/man/ipa-server-install.1 @@ -155,6 +155,9 @@ the \fB\-\-no\-forwarders\fR option is specified. \fB\-\-no\-forwarders\fR Do not add any DNS forwarders. Root DNS servers will be used instead. .TP +\fB\-\-auto\-forwarders\fR +Add DNS forwarders configured in /etc/resolv.conf to the list of forwarders used by IPA DNS. +.TP \fB\-\-reverse\-zone\fR=\fIREVERSE_ZONE\fR The reverse DNS zone to use. This option can be used multiple times to specify multiple reverse zones. .TP -- 2.5.0
From e61d8fb14d5c1f47f48a60bc2057c317e8b5a067 Mon Sep 17 00:00:00 2001 From: Martin Babinsky <[email protected]> Date: Fri, 4 Dec 2015 20:07:29 +0100 Subject: [PATCH 1/2] add auto-forwarders option to standalone DNS installer https://fedorahosted.org/freeipa/ticket/5438 --- install/tools/ipa-dns-install | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install/tools/ipa-dns-install b/install/tools/ipa-dns-install index b6b922e881c21e00994a8fba696d6858f018ac0e..bdaffd30b2554c100dc29bd18e0474165d05c024 100755 --- a/install/tools/ipa-dns-install +++ b/install/tools/ipa-dns-install @@ -49,6 +49,9 @@ def parse_options(): 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("--auto-forwarders", dest="auto_forwarders", + action="store_true", default=False, + help="Use DNS forwarders configured in /etc/resolv.conf") parser.add_option("--reverse-zone", dest="reverse_zones", default=[], action="append", metavar="REVERSE_ZONE", help="The reverse DNS zone to use. This option can be used multiple times") -- 2.5.0
-- Manage your subscription for the Freeipa-devel mailing list: https://www.redhat.com/mailman/listinfo/freeipa-devel Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code
