diff options
author | Martin Nagy <mnagy@redhat.com> | 2008-08-06 19:17:13 +0200 |
---|---|---|
committer | Martin Nagy <mnagy@redhat.com> | 2008-08-06 19:17:13 +0200 |
commit | fbc74a0cb48e7c596eb5c03fd56c068a8e0ef29e (patch) | |
tree | 3ba7a09e94c54cbd6ad352f34eb5fde8cc406a19 | |
parent | df2b40303f86054fe792306fd48430db23dccd83 (diff) | |
download | freeipa-fbc74a0cb48e7c596eb5c03fd56c068a8e0ef29e.tar.gz freeipa-fbc74a0cb48e7c596eb5c03fd56c068a8e0ef29e.tar.xz freeipa-fbc74a0cb48e7c596eb5c03fd56c068a8e0ef29e.zip |
Fix few syntax errors.
-rw-r--r-- | ipa-radius-server/ipa-radius-install | 2 | ||||
-rw-r--r-- | ipa-server/ipa-install/ipa-replica-install | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ipa-radius-server/ipa-radius-install b/ipa-radius-server/ipa-radius-install index 83215b3b3..8101536d6 100644 --- a/ipa-radius-server/ipa-radius-install +++ b/ipa-radius-server/ipa-radius-install @@ -45,7 +45,7 @@ def main(): if not ipautil.file_exists("/etc/ipa/ipa.conf"): print "This system does not appear to have IPA configured." print "Has ipa-server-install been run?" - if not ipautil.user_input("Continue with radius install?", False) + if not ipautil.user_input("Continue with radius install?", False): sys.exit(1) installutils.standard_logging_setup("iparadius-install.log", False) 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: |