From b414ac505282f5a2a59c7580a19dfbd86489676e Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 10 Dec 2007 10:29:20 +0100 Subject: r26369: Start on tests for the upgrade python code. (This used to be commit c4458d11c710d4f0f892b26c7cb0701a43273587) --- source4/scripting/python/samba/upgrade.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/scripting/python/samba/upgrade.py') diff --git a/source4/scripting/python/samba/upgrade.py b/source4/scripting/python/samba/upgrade.py index 49aee3f94d..1908e3ea55 100644 --- a/source4/scripting/python/samba/upgrade.py +++ b/source4/scripting/python/samba/upgrade.py @@ -15,6 +15,7 @@ from uuid import uuid4 from param import default_configuration def regkey_to_dn(name): + """Convert a registry key to a DN.""" dn = "hive=NONE" for el in name.split("/")[1:]: @@ -191,6 +192,7 @@ unixID: %d""" % (m.sid, domaindn, m.sid, m.type, m.unix_id) return ldif def upgrade_wins(samba3): + """Upgrade the WINS database.""" ldif = "" version_id = 0 -- cgit