summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipaserver/dsinstance.py
diff options
context:
space:
mode:
authorMark McLoughlin <markmc@redhat.com>2008-01-22 08:03:06 +0000
committerMark McLoughlin <markmc@redhat.com>2008-01-22 08:03:06 +0000
commitee7c818bde120f1f41c90e69e76f6800bfafbf14 (patch)
treef4cd1fd1047786219cc10e6c3fc035fd84cd44b8 /ipa-server/ipaserver/dsinstance.py
parent9827ffedb70eccb3f71e73ba5bb75700b9452660 (diff)
downloadfreeipa-ee7c818bde120f1f41c90e69e76f6800bfafbf14.tar.gz
freeipa-ee7c818bde120f1f41c90e69e76f6800bfafbf14.tar.xz
freeipa-ee7c818bde120f1f41c90e69e76f6800bfafbf14.zip
Remove questions from ipaserver.dsinstance
Let's assume that all ipaserver.dsinstance could be used somewhere where asking questions on stdout/stdin is not approriate and re-factor the code to be suitable in those situations too. i.e. make check_existing_installation() return a list of server IDs and make check_ports() return an (unsecure, secure) tuple indication which ports are in use. Signed-off-by: Mark McLoughlin <markmc@redhat.com>
Diffstat (limited to 'ipa-server/ipaserver/dsinstance.py')
-rw-r--r--ipa-server/ipaserver/dsinstance.py28
1 files changed, 6 insertions, 22 deletions
diff --git a/ipa-server/ipaserver/dsinstance.py b/ipa-server/ipaserver/dsinstance.py
index b3a445d88..041003382 100644
--- a/ipa-server/ipaserver/dsinstance.py
+++ b/ipa-server/ipaserver/dsinstance.py
@@ -71,34 +71,18 @@ def erase_ds_instance_data(serverid):
def check_existing_installation():
dirs = glob.glob("/etc/dirsrv/slapd-*")
if not dirs:
- return
- print ""
- print "An existing Directory Server has been detected."
- yesno = raw_input("Do you wish to remove it and create a new one? [no]: ")
- if not yesno or yesno.lower()[0] != "y":
- sys.exit(1)
+ return []
- try:
- service.stop("dirsrv")
- except:
- pass
+ serverids = []
for d in dirs:
- serverid = os.path.basename(d).split("slapd-", 1)[1]
- if serverid:
- erase_ds_instance_data(serverid)
+ serverids.append(os.path.basename(d).split("slapd-", 1)[1])
+
+ return serverids
def check_ports():
ds_unsecure = installutils.port_available(389)
ds_secure = installutils.port_available(636)
- if not ds_unsecure or not ds_secure:
- print "IPA requires ports 389 and 636 for the Directory Server."
- print "These are currently in use:"
- if not ds_unsecure:
- print "\t389"
- if not ds_secure:
- print "\t636"
- sys.exit(1)
-
+ return (ds_unsecure, ds_secure)
INF_TEMPLATE = """
[General]