Implement asynchronous search for groups.

Use the filter generation code to search on multiple fields.
This commit is contained in:
Kevin McCarthy
2007-09-19 08:42:34 -07:00
parent 6b3d1e85da
commit f17071533a
5 changed files with 71 additions and 21 deletions

View File

@@ -50,7 +50,9 @@ def main():
client = ipaclient.IPAClient()
groups = client.find_groups(args[1])
if len(groups) == 0:
counter = groups[0]
groups = groups[1:]
if counter == 0:
print "No entries found for", args[1]
return 0