1 | /*
|
---|
2 | Unix SMB/CIFS implementation.
|
---|
3 | Samba utility functions
|
---|
4 | Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007
|
---|
5 |
|
---|
6 | This program is free software; you can redistribute it and/or modify
|
---|
7 | it under the terms of the GNU General Public License as published by
|
---|
8 | the Free Software Foundation; either version 3 of the License, or
|
---|
9 | (at your option) any later version.
|
---|
10 |
|
---|
11 | This program is distributed in the hope that it will be useful,
|
---|
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
14 | GNU General Public License for more details.
|
---|
15 |
|
---|
16 | You should have received a copy of the GNU General Public License
|
---|
17 | along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
18 | */
|
---|
19 |
|
---|
20 | #include "includes.h"
|
---|
21 | #include "scripting/python/modules.h"
|
---|
22 | #include <Python.h>
|
---|
23 |
|
---|
24 | extern void init_ldb(void);
|
---|
25 | extern void init_security(void);
|
---|
26 | extern void init_registry(void);
|
---|
27 | extern void init_param(void);
|
---|
28 | extern void init_misc(void);
|
---|
29 | extern void init_ldb(void);
|
---|
30 | extern void init_auth(void);
|
---|
31 | extern void init_credentials(void);
|
---|
32 | extern void init_tdb(void);
|
---|
33 | extern void init_dcerpc(void);
|
---|
34 | extern void init_events(void);
|
---|
35 | extern void inituuid(void);
|
---|
36 | extern void init_net(void);
|
---|
37 | extern void initecho(void);
|
---|
38 | extern void initdfs(void);
|
---|
39 | extern void initdrsuapi(void);
|
---|
40 | extern void initwinreg(void);
|
---|
41 | extern void initepmapper(void);
|
---|
42 | extern void initinitshutdown(void);
|
---|
43 | extern void initmgmt(void);
|
---|
44 | extern void initnet(void);
|
---|
45 | extern void initatsvc(void);
|
---|
46 | extern void initsamr(void);
|
---|
47 | extern void initlsa(void);
|
---|
48 | extern void initsvcctl(void);
|
---|
49 | extern void initwkssvc(void);
|
---|
50 | extern void initunixinfo(void);
|
---|
51 | extern void init_libcli_nbt(void);
|
---|
52 | extern void init_libcli_smb(void);
|
---|
53 |
|
---|
54 | static struct _inittab py_modules[] = { STATIC_LIBPYTHON_MODULES };
|
---|
55 |
|
---|
56 | void py_load_samba_modules(void)
|
---|
57 | {
|
---|
58 | int i;
|
---|
59 | for (i = 0; i < ARRAY_SIZE(py_modules); i++) {
|
---|
60 | PyImport_ExtendInittab(&py_modules[i]);
|
---|
61 | }
|
---|
62 | }
|
---|
63 |
|
---|
64 | void py_update_path(const char *bindir)
|
---|
65 | {
|
---|
66 | char *newpath;
|
---|
67 | asprintf(&newpath, "%s/python:%s/../scripting/python:%s", bindir, bindir, Py_GetPath());
|
---|
68 | PySys_SetPath(newpath);
|
---|
69 | free(newpath);
|
---|
70 | }
|
---|