36 lines
1.3 KiB
Diff
36 lines
1.3 KiB
Diff
From 4785a90946ec694ccc082f062b2181b23c7099e3 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= <fcami@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 <fcami@redhat.com>
|
|
Reviewed-By: Rob Crittenden <rcritten@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 440f24ee627f0736100f63026158c564b04520c2..132c85c7f198217ba70f2332306ee2550be86035 100644
|
|
--- a/ipaserver/plugins/subid.py
|
|
+++ b/ipaserver/plugins/subid.py
|
|
@@ -524,6 +524,7 @@ class subid_match(subid_find):
|
|
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
|
|
--
|
|
2.31.1
|
|
|