summaryrefslogtreecommitdiff
path: root/source4/scripting/python/pyglue.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-04-04 00:21:09 +0200
committerJelmer Vernooij <jelmer@samba.org>2010-04-04 00:21:09 +0200
commit8afd52a6418125100a5e8a6a4312c0460e57ac88 (patch)
tree926dfbb6722f792a1f5239f8ef41dbf8ed72b8f9 /source4/scripting/python/pyglue.c
parent31a517e1721fc0080473b376cd59c090cfab6456 (diff)
downloadsamba-8afd52a6418125100a5e8a6a4312c0460e57ac88.tar.gz
samba-8afd52a6418125100a5e8a6a4312c0460e57ac88.tar.bz2
samba-8afd52a6418125100a5e8a6a4312c0460e57ac88.zip
s4-python: Move samdb_server_site_name to dsdb module.
Diffstat (limited to 'source4/scripting/python/pyglue.c')
-rw-r--r--source4/scripting/python/pyglue.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/source4/scripting/python/pyglue.c b/source4/scripting/python/pyglue.c
index 08fc648d36..5fa02b367d 100644
--- a/source4/scripting/python/pyglue.c
+++ b/source4/scripting/python/pyglue.c
@@ -557,33 +557,6 @@ static PyObject *py_samdb_ntds_objectGUID(PyObject *self, PyObject *args)
}
-static PyObject *py_samdb_server_site_name(PyObject *self, PyObject *args)
-{
- PyObject *py_ldb, *result;
- struct ldb_context *ldb;
- const char *site;
- TALLOC_CTX *mem_ctx = talloc_new(NULL);
-
- if (!PyArg_ParseTuple(args, "O", &py_ldb)) {
- talloc_free(mem_ctx);
- return NULL;
- }
-
- PyErr_LDB_OR_RAISE(py_ldb, ldb);
-
- site = samdb_server_site_name(ldb, mem_ctx);
- if (site == NULL) {
- PyErr_SetStringError("Failed to find server site");
- talloc_free(mem_ctx);
- return NULL;
- }
-
- result = PyString_FromString(site);
- talloc_free(mem_ctx);
- return result;
-}
-
-
/*
return the list of interface IPs we have configured
takes an loadparm context, returns a list of IPs in string form
@@ -689,8 +662,6 @@ static PyMethodDef py_misc_methods[] = {
"get the NTDS invocation ID GUID as a string"},
{ "samdb_ntds_objectGUID", (PyCFunction)py_samdb_ntds_objectGUID, METH_VARARGS,
"get the NTDS objectGUID as a string"},
- { "samdb_server_site_name", (PyCFunction)py_samdb_server_site_name, METH_VARARGS,
- "get the server site name as a string"},
{ "interface_ips", (PyCFunction)py_interface_ips, METH_VARARGS,
"get interface IP address list"},
{ NULL }