mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
s4-python: Remove cruft to deal with static python modules, which are no
longer supported.
This commit is contained in:
parent
390b0521bd
commit
55ef0ecea8
@ -90,7 +90,6 @@ NTSTATUS provision_bare(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx,
|
||||
|
||||
DEBUG(0,("Provision for Become-DC test using python\n"));
|
||||
|
||||
py_load_samba_modules();
|
||||
Py_Initialize();
|
||||
py_update_path("bin"); /* FIXME: Can't assume this is always the case */
|
||||
|
||||
@ -249,7 +248,6 @@ NTSTATUS provision_store_self_join(TALLOC_CTX *mem_ctx, struct loadparm_context
|
||||
return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
|
||||
}
|
||||
|
||||
py_load_samba_modules();
|
||||
Py_Initialize();
|
||||
py_update_path("bin"); /* FIXME: Can't assume this is always the case */
|
||||
provision_mod = provision_module();
|
||||
@ -348,7 +346,6 @@ struct ldb_context *provision_get_schema(TALLOC_CTX *mem_ctx, struct loadparm_co
|
||||
|
||||
DEBUG(0,("Schema for DRS tests using python\n"));
|
||||
|
||||
py_load_samba_modules();
|
||||
Py_Initialize();
|
||||
py_update_path("bin"); /* FIXME: Can't assume this is always the case */
|
||||
|
||||
|
@ -22,46 +22,6 @@
|
||||
#include "scripting/python/modules.h"
|
||||
#include "dynconfig/dynconfig.h"
|
||||
|
||||
extern void init_ldb(void);
|
||||
extern void init_security(void);
|
||||
extern void init_registry(void);
|
||||
extern void init_param(void);
|
||||
extern void init_misc(void);
|
||||
extern void init_ldb(void);
|
||||
extern void init_auth(void);
|
||||
extern void init_credentials(void);
|
||||
extern void init_tdb(void);
|
||||
extern void init_dcerpc(void);
|
||||
extern void init_events(void);
|
||||
extern void inituuid(void);
|
||||
extern void init_net(void);
|
||||
extern void initecho(void);
|
||||
extern void initdfs(void);
|
||||
extern void initdrsuapi(void);
|
||||
extern void initwinreg(void);
|
||||
extern void initepmapper(void);
|
||||
extern void initinitshutdown(void);
|
||||
extern void initmgmt(void);
|
||||
extern void initnet(void);
|
||||
extern void initatsvc(void);
|
||||
extern void initsamr(void);
|
||||
extern void initlsa(void);
|
||||
extern void initsvcctl(void);
|
||||
extern void initwkssvc(void);
|
||||
extern void initunixinfo(void);
|
||||
extern void init_libcli_nbt(void);
|
||||
extern void init_libcli_smb(void);
|
||||
|
||||
static struct _inittab py_modules[] = { STATIC_LIBPYTHON_MODULES };
|
||||
|
||||
void py_load_samba_modules(void)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < ARRAY_SIZE(py_modules); i++) {
|
||||
PyImport_ExtendInittab(&py_modules[i]);
|
||||
}
|
||||
}
|
||||
|
||||
static bool PySys_PathPrepend(PyObject *list, const char *path)
|
||||
{
|
||||
PyObject *py_path = PyString_FromString(path);
|
||||
|
@ -20,7 +20,6 @@
|
||||
#ifndef __SAMBA_PYTHON_MODULES_H__
|
||||
#define __SAMBA_PYTHON_MODULES_H__
|
||||
|
||||
void py_load_samba_modules(void);
|
||||
bool py_update_path(const char *bindir);
|
||||
|
||||
#endif /* __SAMBA_PYTHON_MODULES_H__ */
|
||||
|
@ -308,7 +308,6 @@ static int binary_net(int argc, const char **argv)
|
||||
d_printf("Failed to create an event context\n");
|
||||
exit(1);
|
||||
}
|
||||
py_load_samba_modules();
|
||||
Py_Initialize();
|
||||
PySys_SetArgv(argc, discard_const_p(char *, argv));
|
||||
py_update_path("bin"); /* FIXME: Can't assume this is always the case */
|
||||
|
Loading…
Reference in New Issue
Block a user