summaryrefslogtreecommitdiff
path: root/source4/param/pyparam.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-06-06 14:39:19 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-06-06 17:37:51 +1000
commitf67a14976bd6ccdacd319df872e6add994f0e0f3 (patch)
tree09b416c3c1fd041d9e19d3df3b6b52150ef3e5b9 /source4/param/pyparam.c
parentde46ad9084aff4384f33660acf91da3b81554a88 (diff)
downloadsamba-f67a14976bd6ccdacd319df872e6add994f0e0f3.tar.gz
samba-f67a14976bd6ccdacd319df872e6add994f0e0f3.tar.bz2
samba-f67a14976bd6ccdacd319df872e6add994f0e0f3.zip
s4-param Remove 'modules dir'
The Samba waf build ensures that dyn_MODULESDIR is always correct (even for in-tree binaries), so we don't need to allow the user to configure this at run time. Andrew Bartlett
Diffstat (limited to 'source4/param/pyparam.c')
-rw-r--r--source4/param/pyparam.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source4/param/pyparam.c b/source4/param/pyparam.c
index 998eb9d325..e1ba18415d 100644
--- a/source4/param/pyparam.c
+++ b/source4/param/pyparam.c
@@ -440,11 +440,18 @@ static PyObject *py_setup_dir(PyObject *self)
return PyString_FromString(dyn_SETUPDIR);
}
+static PyObject *py_modules_dir(PyObject *self)
+{
+ return PyString_FromString(dyn_MODULESDIR);
+}
+
static PyMethodDef pyparam_methods[] = {
{ "default_path", (PyCFunction)py_default_path, METH_NOARGS,
"Returns the default smb.conf path." },
{ "setup_dir", (PyCFunction)py_setup_dir, METH_NOARGS,
"Returns the compiled in location of provision tempates." },
+ { "modules_dir", (PyCFunction)py_modules_dir, METH_NOARGS,
+ "Returns the compiled in location of modules." },
{ NULL }
};