summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/plugins/update_uniqueness.py
diff options
context:
space:
mode:
authorMartin Basti <mbasti@redhat.com>2015-03-17 17:56:34 +0100
committerPetr Vobornik <pvoborni@redhat.com>2015-04-14 19:25:47 +0200
commitcc19b5a76a37d1fb87deb45d9cbfc71472a99fa4 (patch)
tree1dbecc1e9cb5b4bf972996fc45a2738f9942863d /ipaserver/install/plugins/update_uniqueness.py
parentb4ca5c57d230c80ecc4f8eaaa01d8e7a36bcb3b4 (diff)
downloadfreeipa-cc19b5a76a37d1fb87deb45d9cbfc71472a99fa4.tar.gz
freeipa-cc19b5a76a37d1fb87deb45d9cbfc71472a99fa4.tar.xz
freeipa-cc19b5a76a37d1fb87deb45d9cbfc71472a99fa4.zip
Server Upgrade: Apply plugin updates immediately
Preparation to moving plugins executin into update files. * remove apply_now flag * plugins will return only (restart, modifications) https://fedorahosted.org/freeipa/ticket/4904 Reviewed-By: David Kupka <dkupka@redhat.com>
Diffstat (limited to 'ipaserver/install/plugins/update_uniqueness.py')
-rw-r--r--ipaserver/install/plugins/update_uniqueness.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipaserver/install/plugins/update_uniqueness.py b/ipaserver/install/plugins/update_uniqueness.py
index e0ee150a7..fa6b990e0 100644
--- a/ipaserver/install/plugins/update_uniqueness.py
+++ b/ipaserver/install/plugins/update_uniqueness.py
@@ -184,7 +184,7 @@ class update_uniqueness_plugins_to_new_syntax(PreUpdate):
except errors.NotFound:
root_logger.debug("No uniqueness plugin entries with old style "
"configuration found")
- return False, False, []
+ return False, []
update_list = []
new_attributes = [
@@ -220,6 +220,6 @@ class update_uniqueness_plugins_to_new_syntax(PreUpdate):
update_list.append(update)
- return False, True, update_list
+ return False, update_list
api.register(update_uniqueness_plugins_to_new_syntax)