summaryrefslogtreecommitdiffstats
path: root/install/tools/ipa-replica-install
diff options
context:
space:
mode:
Diffstat (limited to 'install/tools/ipa-replica-install')
-rwxr-xr-xinstall/tools/ipa-replica-install10
1 files changed, 7 insertions, 3 deletions
diff --git a/install/tools/ipa-replica-install b/install/tools/ipa-replica-install
index 64f157742..49df7fef9 100755
--- a/install/tools/ipa-replica-install
+++ b/install/tools/ipa-replica-install
@@ -290,9 +290,13 @@ def install_bind(config, options):
if options.unattended:
# In unattended mode just use the cmdline flag
create_reverse = not options.no_reverse
- elif not options.no_reverse:
- # In interactive mode, if the flag was not explicitly specified, ask the user
- create_reverse = bindinstance.create_reverse()
+ else:
+ if options.no_reverse:
+ create_reverse = False
+ else:
+ # In interactive mode, if the flag was not explicitly
+ # specified, ask the user
+ create_reverse = bindinstance.create_reverse()
bind.setup(config.host_name, ip_address, config.realm_name,
config.domain_name, forwarders, options.conf_ntp, create_reverse)