From e811c87b1ca4612349c9bbe9741705e9638feb2c Mon Sep 17 00:00:00 2001 From: Karl MacMillan Date: Mon, 30 Jul 2007 13:41:14 -0400 Subject: [PATCH] Update dsinstance.py to use setup-ds.pl instead of ds_newinst.pl. --- ipa-server/ipaserver/dsinstance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipa-server/ipaserver/dsinstance.py b/ipa-server/ipaserver/dsinstance.py index b16aa7c51..33514fefc 100644 --- a/ipa-server/ipaserver/dsinstance.py +++ b/ipa-server/ipaserver/dsinstance.py @@ -137,7 +137,7 @@ class DsInstance: logging.debug(inf_txt) inf_fd = write_tmp_file(inf_txt) logging.debug("writing inf template") - args = ["/usr/bin/ds_newinst.pl", inf_fd.name] + args = ["/usr/sbin/setup-ds.pl", "--silent", "--logfile", "-", "-f", inf_fd.name, ] logging.debug("calling ds_newinst.pl") run(args) logging.debug("completed creating ds instance")