mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2026-09-03 20:52:56 -05:00
Return non-zero when the number of entries from *-find returned is zero.
ticket 325
This commit is contained in:
+3
-1
@@ -896,7 +896,9 @@ class Command(HasParam):
|
||||
continue
|
||||
result = output[o]
|
||||
|
||||
if o.lower() == 'failed':
|
||||
if o.lower() == 'count' and result == 0:
|
||||
rv = 1
|
||||
elif o.lower() == 'failed':
|
||||
if self.number_failed(result) == 0:
|
||||
# Don't display an empty failed list
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user