From 9b02f86dc3fad75fa3b353b2a6c0a20c19cbc2ae Mon Sep 17 00:00:00 2001 From: David Kupka Date: Jan 11 2016 15:34:31 +0000 Subject: ipa-replica-prepare: Add '--auto-reverse' and '--allow-zone-overlap' options Opiton should be added to ipa-replica-prepare when it was added to ipa-{server,replica,dns}-install but was forgotten. https://fedorahosted.org/freeipa/ticket/5563 Reviewed-By: Martin Basti --- diff --git a/ipaserver/install/ipa_replica_prepare.py b/ipaserver/install/ipa_replica_prepare.py index cef0228..e9fd2d9 100644 --- a/ipaserver/install/ipa_replica_prepare.py +++ b/ipaserver/install/ipa_replica_prepare.py @@ -80,6 +80,11 @@ class ReplicaPrepare(admintool.AdminTool): parser.add_option("--no-reverse", dest="no_reverse", action="store_true", default=False, help="do not create reverse DNS zone") + parser.add_option("--auto-reverse", dest="auto_reverse", default=False, + action="store_true", help="create necessary DNS zones") + parser.add_option("--allow-zone-overlap", dest="allow_zone_overlap", + action="store_true", default=False, help="create DNS " + "zone even if it already exists") parser.add_option("--no-pkinit", dest="setup_pkinit", action="store_false", default=True, help="disables pkinit setup steps")