From d33b7fc839b4eb87bba06f49d16e5d93b0a87caf Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Fri, 12 Sep 2008 18:37:11 -0400 Subject: The True/False logic was reversed, so "no" meant remove the existing instance --- ipa-server/ipa-install/ipa-server-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipa-server/ipa-install/ipa-server-install b/ipa-server/ipa-install/ipa-server-install index d4879172..d80bd787 100644 --- a/ipa-server/ipa-install/ipa-server-install +++ b/ipa-server/ipa-install/ipa-server-install @@ -270,7 +270,7 @@ def check_dirsrv(unattended): if serverids: print "" print "An existing Directory Server has been detected." - if unattended or user_input("Do you wish to remove it and create a new one?", False): + if unattended or not 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." -- cgit