From 7200c25646d1c34dd1ce723ab4fba3c40c89b6b0 Mon Sep 17 00:00:00 2001 From: Anatoliy Atanasov Date: Tue, 11 May 2010 11:35:54 +0300 Subject: Revert "s4-rodc: Fix provision warnings by creating ntds objectGUID in provision" This reverts commit c3cbb846d0bfbaa11fd255bada7fa5fe502d4d96. The fix is not correct, we should cache a bool to answer amIRODC --- source4/dsdb/pydsdb.c | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'source4/dsdb') diff --git a/source4/dsdb/pydsdb.c b/source4/dsdb/pydsdb.c index c92eec2aaf..45f8b6e1ca 100644 --- a/source4/dsdb/pydsdb.c +++ b/source4/dsdb/pydsdb.c @@ -309,26 +309,6 @@ static PyObject *py_samdb_ntds_objectGUID(PyObject *self, PyObject *args) return result; } -static PyObject *py_dsdb_set_ntds_objectGUID(PyObject *self, PyObject *args) -{ - PyObject *py_ldb, *py_guid; - bool ret; - struct GUID guid; - struct ldb_context *ldb; - if (!PyArg_ParseTuple(args, "OO", &py_ldb, &py_guid)) - return NULL; - - PyErr_LDB_OR_RAISE(py_ldb, ldb); - GUID_from_string(PyString_AsString(py_guid), &guid); - - ret = samdb_set_ntds_objectGUID(ldb, &guid); - if (!ret) { - PyErr_SetString(PyExc_RuntimeError, "set_ntds_objectGUID failed"); - return NULL; - } - Py_RETURN_NONE; -} - static PyObject *py_dsdb_set_global_schema(PyObject *self, PyObject *args) { PyObject *py_ldb; @@ -419,9 +399,6 @@ static PyMethodDef py_dsdb_methods[] = { NULL }, { "samdb_ntds_objectGUID", (PyCFunction)py_samdb_ntds_objectGUID, METH_VARARGS, "get the NTDS objectGUID as a string"}, - { "dsdb_set_ntds_objectGUID", - (PyCFunction)py_dsdb_set_ntds_objectGUID, METH_VARARGS, - NULL }, { "dsdb_set_global_schema", (PyCFunction)py_dsdb_set_global_schema, METH_VARARGS, NULL }, { "dsdb_load_partition_usn", (PyCFunction)py_dsdb_load_partition_usn, -- cgit