URL: https://github.com/freeipa/freeipa/pull/6003 Author: flo-renaud Title: #6003: [Backport][ipa-4-9] subid: subid-match: display the owner's ID not DN Action: opened
PR body: """ This PR was opened automatically because PR #6001 was pushed to master and backport to ipa-4-9 is required. """ To pull the PR as Git branch: git remote add ghfreeipa https://github.com/freeipa/freeipa git fetch ghfreeipa pull/6003/head:pr6003 git checkout pr6003
From a61d951994f93bc11877da66bd6690417e843e25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= <fc...@redhat.com> Date: Thu, 2 Sep 2021 16:17:01 +0200 Subject: [PATCH] subid: subid-match: display the owner's ID not DN MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previously, the subid-match command would output the full DN of the owner of the matched range. With this change, the UID of the owner is displayed, just like for other subid- commands. Fixes: https://github.com/freeipa/freeipa/pull/6001 Signed-off-by: François Cami <fc...@redhat.com> --- ipaserver/plugins/subid.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ipaserver/plugins/subid.py b/ipaserver/plugins/subid.py index 440f24ee627..132c85c7f19 100644 --- a/ipaserver/plugins/subid.py +++ b/ipaserver/plugins/subid.py @@ -524,6 +524,7 @@ def post_callback(self, ldap, entries, truncated, *args, **options): osubuid = options["ipasubuidnumber"] new_entries = [] for entry in entries: + self.obj.convert_owner(entry, options) esubuid = int(entry.single_value["ipasubuidnumber"]) esubcount = int(entry.single_value["ipasubuidcount"]) minsubuid = esubuid
_______________________________________________ FreeIPA-devel mailing list -- freeipa-devel@lists.fedorahosted.org To unsubscribe send an email to freeipa-devel-le...@lists.fedorahosted.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedorahosted.org/archives/list/freeipa-devel@lists.fedorahosted.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure