diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-22 01:47:36 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-05-22 01:47:36 +0200 |
commit | 84a3290c8f0adf1248e61ab9f6c88bcfd4650375 (patch) | |
tree | fd36f953a2c33004c14e61447d70574e8bf0ba29 /source4/setup | |
parent | 7e3367704799a2279f125104c762886a1c257535 (diff) | |
download | samba-84a3290c8f0adf1248e61ab9f6c88bcfd4650375.tar.gz samba-84a3290c8f0adf1248e61ab9f6c88bcfd4650375.tar.bz2 samba-84a3290c8f0adf1248e61ab9f6c88bcfd4650375.zip |
Fix python imports.
(This used to be commit 453206665677821b254c18cc67192e007b892f04)
Diffstat (limited to 'source4/setup')
-rwxr-xr-x | source4/setup/enableaccount | 2 | ||||
-rwxr-xr-x | source4/setup/newuser | 2 | ||||
-rw-r--r-- | source4/setup/setpassword | 7 |
3 files changed, 8 insertions, 3 deletions
diff --git a/source4/setup/enableaccount b/source4/setup/enableaccount index ad81042998..c2321606a6 100755 --- a/source4/setup/enableaccount +++ b/source4/setup/enableaccount @@ -14,7 +14,7 @@ import optparse import pwd import ldb -from auth import system_session +from samba.auth import system_session from samba.samdb import SamDB parser = optparse.OptionParser("setpassword [username] [options]") diff --git a/source4/setup/newuser b/source4/setup/newuser index 26bac76f02..991afa36d8 100755 --- a/source4/setup/newuser +++ b/source4/setup/newuser @@ -15,7 +15,7 @@ import samba.getopt as options import optparse import pwd from getpass import getpass -from auth import system_session +from samba.auth import system_session from samba.samdb import SamDB parser = optparse.OptionParser("newuser [options] <username> [<password>]") diff --git a/source4/setup/setpassword b/source4/setup/setpassword index 977a6a5ee8..65770e1f4d 100644 --- a/source4/setup/setpassword +++ b/source4/setup/setpassword @@ -6,12 +6,17 @@ # Released under the GNU GPL version 3 or later # +import os, 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.auth import system_session from samba.samdb import SamDB parser = optparse.OptionParser("setpassword [username] [options]") |