diff options
author | Andrew Bartlett <abartlet@samba.org> | 2009-09-21 12:28:38 -0700 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2009-09-21 12:28:38 -0700 |
commit | 1afc7c453c1d5f7e761e46cdc69900305a149820 (patch) | |
tree | a7ec12da94b14d00019a7f9cdbc8d8d843199ec7 /source4/scripting/python | |
parent | 8738b83a446ef667bc162b04affc17dbba7e58a8 (diff) | |
download | samba-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.py | 2 |
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"]; |