diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-09-05 16:43:26 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-09-13 15:38:34 +1000 |
commit | 4ff99264cbc4ae39c3160a8eeba3ee27be899746 (patch) | |
tree | c87942c51a58fb640952bdfc63c6b974e96e229a /source4/scripting | |
parent | eb0060766f2eced27fb0ac747af5bb4728df4448 (diff) | |
download | samba-4ff99264cbc4ae39c3160a8eeba3ee27be899746.tar.gz samba-4ff99264cbc4ae39c3160a8eeba3ee27be899746.tar.bz2 samba-4ff99264cbc4ae39c3160a8eeba3ee27be899746.zip |
s4-join: fixed non-subdomain join
these two vars need to be initialised for general join
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/scripting')
-rw-r--r-- | source4/scripting/python/samba/join.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/scripting/python/samba/join.py b/source4/scripting/python/samba/join.py index dfa8bf9e0d..bd343fa4c5 100644 --- a/source4/scripting/python/samba/join.py +++ b/source4/scripting/python/samba/join.py @@ -122,6 +122,8 @@ class dc_join(object): ctx.krbtgt_dn = None ctx.drsuapi = None ctx.managedby = None + ctx.subdomain = False + ctx.domguid = None def del_noerror(ctx, dn, recursive=False): |