summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipa-install
diff options
context:
space:
mode:
authorMartin Nagy <mnagy@redhat.com>2008-08-06 19:17:13 +0200
committerMartin Nagy <mnagy@redhat.com>2008-08-06 19:17:13 +0200
commitfbc74a0cb48e7c596eb5c03fd56c068a8e0ef29e (patch)
tree3ba7a09e94c54cbd6ad352f34eb5fde8cc406a19 /ipa-server/ipa-install
parentdf2b40303f86054fe792306fd48430db23dccd83 (diff)
downloadfreeipa-fbc74a0cb48e7c596eb5c03fd56c068a8e0ef29e.tar.gz
freeipa-fbc74a0cb48e7c596eb5c03fd56c068a8e0ef29e.tar.xz
freeipa-fbc74a0cb48e7c596eb5c03fd56c068a8e0ef29e.zip
Fix few syntax errors.
Diffstat (limited to 'ipa-server/ipa-install')
-rw-r--r--ipa-server/ipa-install/ipa-replica-install4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipa-server/ipa-install/ipa-replica-install b/ipa-server/ipa-install/ipa-replica-install
index 73b21c3a0..e9d962915 100644
--- a/ipa-server/ipa-install/ipa-replica-install
+++ b/ipa-server/ipa-install/ipa-replica-install
@@ -146,7 +146,7 @@ def check_dirsrv():
if serverids:
print ""
print "An existing Directory Server has been detected."
- if not ipautil.user_input("Do you wish to remove it and create a new one?", False)
+ if not ipautil.user_input("Do you wish to remove it and create a new one?", False):
print ""
print "Only a single Directory Server instance is allowed on an IPA"
print "server, the one used by IPA itself."
@@ -189,7 +189,7 @@ def main():
if host != config.host_name:
try:
print "This replica was created for '%s' but this machine is named '%s'" % (host, config.host_name)
- if not ipautil.user_input("This may cause problems. Continue?", True)
+ if not ipautil.user_input("This may cause problems. Continue?", True):
sys.exit(0)
print ""
except KeyboardInterrupt: