summaryrefslogtreecommitdiff
path: root/source4/scripting/python
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2009-09-21 12:28:38 -0700
committerAndrew Bartlett <abartlet@samba.org>2009-09-21 12:28:38 -0700
commit1afc7c453c1d5f7e761e46cdc69900305a149820 (patch)
treea7ec12da94b14d00019a7f9cdbc8d8d843199ec7 /source4/scripting/python
parent8738b83a446ef667bc162b04affc17dbba7e58a8 (diff)
downloadsamba-1afc7c453c1d5f7e761e46cdc69900305a149820.tar.gz
samba-1afc7c453c1d5f7e761e46cdc69900305a149820.tar.bz2
samba-1afc7c453c1d5f7e761e46cdc69900305a149820.zip
s4:kerberos Fix the salt to match Windows 2008.
The previous commit changed the wrong end - we must fix our server, not our client. Andrew Bartlett
Diffstat (limited to 'source4/scripting/python')
-rw-r--r--source4/scripting/python/samba/provision.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/provision.py b/source4/scripting/python/samba/provision.py
index af706d08dd..9a41709830 100644
--- a/source4/scripting/python/samba/provision.py
+++ b/source4/scripting/python/samba/provision.py
@@ -687,7 +687,7 @@ def secretsdb_self_join(secretsdb, domain,
dnsdomain = realm.lower()
msg["objectClass"] = ["top", "primaryDomain", "kerberosSecret"]
msg["realm"] = realm
- msg["saltPrincipal"] = "host/%s.%s@%s" % (netbiosname, dnsdomain.lower(), realm.upper())
+ msg["saltPrincipal"] = "host/%s.%s@%s" % (netbiosname.lower(), dnsdomain.lower(), realm.upper())
msg["msDS-KeyVersionNumber"] = [str(key_version_number)]
msg["privateKeytab"] = ["secrets.keytab"];