mirror of
https://github.com/samba-team/samba.git
synced 2025-02-02 09:47:23 +03:00
pydsdb: Move set_schema_from_ldif function to pydsdb from pyglue.
This commit is contained in:
parent
d3a99579f6
commit
05b108a06b
@ -390,6 +390,24 @@ static PyObject *py_dsdb_set_am_rodc(PyObject *self, PyObject *args)
|
||||
Py_RETURN_NONE;
|
||||
}
|
||||
|
||||
static PyObject *py_dsdb_set_schema_from_ldif(PyObject *self, PyObject *args)
|
||||
{
|
||||
WERROR result;
|
||||
char *pf, *df;
|
||||
PyObject *py_ldb;
|
||||
struct ldb_context *ldb;
|
||||
|
||||
if (!PyArg_ParseTuple(args, "Oss", &py_ldb, &pf, &df))
|
||||
return NULL;
|
||||
|
||||
PyErr_LDB_OR_RAISE(py_ldb, ldb);
|
||||
|
||||
result = dsdb_set_schema_from_ldif(ldb, pf, df);
|
||||
PyErr_WERROR_IS_ERR_RAISE(result);
|
||||
|
||||
Py_RETURN_NONE;
|
||||
}
|
||||
|
||||
static PyMethodDef py_dsdb_methods[] = {
|
||||
{ "samdb_server_site_name", (PyCFunction)py_samdb_server_site_name,
|
||||
METH_VARARGS, "Get the server site name as a string"},
|
||||
@ -426,6 +444,8 @@ static PyMethodDef py_dsdb_methods[] = {
|
||||
{ "dsdb_set_am_rodc",
|
||||
(PyCFunction)py_dsdb_set_am_rodc, METH_VARARGS,
|
||||
NULL },
|
||||
{ "dsdb_set_schema_from_ldif", (PyCFunction)py_dsdb_set_schema_from_ldif, METH_VARARGS,
|
||||
NULL },
|
||||
{ NULL }
|
||||
};
|
||||
|
||||
|
@ -148,23 +148,7 @@ static PyObject *py_set_debug_level(PyObject *self, PyObject *args)
|
||||
Py_RETURN_NONE;
|
||||
}
|
||||
|
||||
static PyObject *py_dsdb_set_schema_from_ldif(PyObject *self, PyObject *args)
|
||||
{
|
||||
WERROR result;
|
||||
char *pf, *df;
|
||||
PyObject *py_ldb;
|
||||
struct ldb_context *ldb;
|
||||
|
||||
if (!PyArg_ParseTuple(args, "Oss", &py_ldb, &pf, &df))
|
||||
return NULL;
|
||||
|
||||
PyErr_LDB_OR_RAISE(py_ldb, ldb);
|
||||
|
||||
result = dsdb_set_schema_from_ldif(ldb, pf, df);
|
||||
PyErr_WERROR_IS_ERR_RAISE(result);
|
||||
|
||||
Py_RETURN_NONE;
|
||||
}
|
||||
|
||||
static PyObject *py_dsdb_write_prefixes_from_schema_to_ldb(PyObject *self, PyObject *args)
|
||||
{
|
||||
@ -284,8 +268,6 @@ static PyMethodDef py_misc_methods[] = {
|
||||
"nttime2unix(nttime) -> timestamp" },
|
||||
{ "nttime2string", (PyCFunction)py_nttime2string, METH_VARARGS,
|
||||
"nttime2string(nttime) -> string" },
|
||||
{ "dsdb_set_schema_from_ldif", (PyCFunction)py_dsdb_set_schema_from_ldif, METH_VARARGS,
|
||||
NULL },
|
||||
{ "dsdb_write_prefixes_from_schema_to_ldb", (PyCFunction)py_dsdb_write_prefixes_from_schema_to_ldb, METH_VARARGS,
|
||||
NULL },
|
||||
{ "dsdb_set_schema_from_ldb", (PyCFunction)py_dsdb_set_schema_from_ldb, METH_VARARGS,
|
||||
|
@ -278,7 +278,7 @@ class Ldb(_Ldb):
|
||||
dsdb.samdb_get_domain_sid(self)
|
||||
|
||||
def set_schema_from_ldif(self, pf, df):
|
||||
_glue.dsdb_set_schema_from_ldif(self, pf, df)
|
||||
dsdb.dsdb_set_schema_from_ldif(self, pf, df)
|
||||
|
||||
def get_oid_from_attid(self, attid):
|
||||
return dsdb.dsdb_get_oid_from_attid(self, attid)
|
||||
|
Loading…
x
Reference in New Issue
Block a user