I've pushed this under the 1-liner rule.

We changed the continue-deleting-on-error from --continuous to --continue. Looks like we missed one.

rob
>From 1bcd4a389d90e6f95505c1589769c5ab809601d8 Mon Sep 17 00:00:00 2001
From: Rob Crittenden <rcrit...@redhat.com>
Date: Fri, 3 Dec 2010 17:32:38 -0500
Subject: [PATCH] When deleting multiple entries use --continue, not --continuous.

ticket 561
---
 ipalib/plugins/baseldap.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/ipalib/plugins/baseldap.py b/ipalib/plugins/baseldap.py
index 00ca89f..6b7153b 100644
--- a/ipalib/plugins/baseldap.py
+++ b/ipalib/plugins/baseldap.py
@@ -853,7 +853,7 @@ class LDAPDelete(LDAPMultiQuery):
                 if not delete_entry(pkey):
                     result = False
             except errors.ExecutionError:
-                if not options.get('continuous', False):
+                if not options.get('continue', False):
                     raise
                 failed.append(pkey)
             else:
-- 
1.6.2.5

_______________________________________________
Freeipa-devel mailing list
Freeipa-devel@redhat.com
https://www.redhat.com/mailman/listinfo/freeipa-devel

Reply via email to