https://fedorahosted.org/freeipa/ticket/4642
From a5126724da30536210ce0399001d68e8e52778b3 Mon Sep 17 00:00:00 2001 From: Nathaniel McCallum <[email protected]> Date: Fri, 24 Oct 2014 16:16:50 -0400 Subject: [PATCH] Ensure users exist when assigning tokens to them
https://fedorahosted.org/freeipa/ticket/4642 --- ipalib/plugins/otptoken.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ipalib/plugins/otptoken.py b/ipalib/plugins/otptoken.py index 2b5f1c5fb83341d392e165a3507f5076820f1d3a..460204022939b6e945d04000c6ee4cef1bf327b1 100644 --- a/ipalib/plugins/otptoken.py +++ b/ipalib/plugins/otptoken.py @@ -100,8 +100,11 @@ def _convert_owner(userobj, entry_attrs, options): def _normalize_owner(userobj, entry_attrs): owner = entry_attrs.get('ipatokenowner', None) - if owner is not None: - entry_attrs['ipatokenowner'] = userobj.get_dn(owner) + if owner: + try: + entry_attrs['ipatokenowner'] = userobj._normalize_manager(owner)[0] + except NotFound: + raise NotFound(reason=_('User %s not found') % owner) def _check_interval(not_before, not_after): if not_before and not_after: -- 2.1.0
_______________________________________________ Freeipa-devel mailing list [email protected] https://www.redhat.com/mailman/listinfo/freeipa-devel
