From c781e8a57d3d05fa07729dbccff07bc1fab9d8e8 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Mon, 10 Aug 2009 16:24:10 -0400 Subject: Add a new objectclass, ipaObject, that will add a UUID to many IPA objects ipaObject is defined as an auxiliary objectclass so it is up to the plugin author to ensure that the objectclass is included an a UUID generated. ipaUniqueId is a MUST attribute so if you include the objectclass you must ensure that the uuid is generated. This also fixes up some unrelated unit test failures. --- ipalib/plugins/user.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ipalib/plugins/user.py') diff --git a/ipalib/plugins/user.py b/ipalib/plugins/user.py index 2b4ec521..e48a408c 100644 --- a/ipalib/plugins/user.py +++ b/ipalib/plugins/user.py @@ -24,6 +24,7 @@ Users (Identity) from ipalib import api, crud, errors from ipalib import Command, Object from ipalib import Flag, Int, Password, Str +from ipalib import uuid # parent DN _container_dn = api.env.container_user @@ -151,6 +152,8 @@ class user_add(crud.Create): # fill default group's gidNumber entry_attrs['gidnumber'] = group_attrs['gidnumber'] + entry_attrs['ipauniqueid'] = str(uuid.uuid1()) + # create user entry ldap.add_entry(dn, entry_attrs) -- cgit