diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-11 05:45:49 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-05-11 05:45:49 +0200 |
commit | 47d22189227c0dd6f2f370ade2cfb878eef0f240 (patch) | |
tree | 140e95547647681bec00137c935a5a1b0463247b /source4/setup | |
parent | babdcc6135e6d3a91a9ddeae0555652026f09344 (diff) | |
download | samba-47d22189227c0dd6f2f370ade2cfb878eef0f240.tar.gz samba-47d22189227c0dd6f2f370ade2cfb878eef0f240.tar.bz2 samba-47d22189227c0dd6f2f370ade2cfb878eef0f240.zip |
Set sys.path for running inside source tree.
(This used to be commit b507109bb676715f7d9616e13b0e19305e9c2559)
Diffstat (limited to 'source4/setup')
-rwxr-xr-x | source4/setup/newuser | 6 | ||||
-rwxr-xr-x | source4/setup/provision | 3 | ||||
-rwxr-xr-x | source4/setup/upgrade.py | 4 |
3 files changed, 11 insertions, 2 deletions
diff --git a/source4/setup/newuser b/source4/setup/newuser index 04a5440ee1..26bac76f02 100755 --- a/source4/setup/newuser +++ b/source4/setup/newuser @@ -6,10 +6,14 @@ # Released under the GNU GPL version 3 or later # +import sys + +# Find right directory when running from source tree +sys.path.insert(0, "bin/python") + import samba.getopt as options import optparse import pwd -import sys from getpass import getpass from auth import system_session from samba.samdb import SamDB diff --git a/source4/setup/provision b/source4/setup/provision index ad289aaaa3..2579bc4f19 100755 --- a/source4/setup/provision +++ b/source4/setup/provision @@ -26,7 +26,8 @@ import getopt import optparse import os, sys -sys.path.append("bin/python") +# Find right directory when running from source tree +sys.path.insert(0, "bin/python") import samba import param diff --git a/source4/setup/upgrade.py b/source4/setup/upgrade.py index 3bcc57ab64..b1d9ffa37c 100755 --- a/source4/setup/upgrade.py +++ b/source4/setup/upgrade.py @@ -7,6 +7,10 @@ import getopt import optparse import os, sys + +# Find right directory when running from source tree +sys.path.insert(0, "bin/python") + import param import samba import samba.getopt as options |