summaryrefslogtreecommitdiffstats
path: root/ipalib/plugable.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/plugable.py')
-rw-r--r--ipalib/plugable.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/ipalib/plugable.py b/ipalib/plugable.py
index f01214332..4c0b175f5 100644
--- a/ipalib/plugable.py
+++ b/ipalib/plugable.py
@@ -735,9 +735,22 @@ class API(DictProxy):
"""
self.__doing('bootstrap')
+ def load_plugins(self, dry_run=False):
+ """
+ Load plugins from all standard locations.
+
+ `API.bootstrap` will automatically be called if it hasn't been
+ already.
+ """
+ self.__doing('load_plugins')
+ self.__do_if_not_done('bootstrap')
+
def finalize(self):
"""
Finalize the registration, instantiate the plugins.
+
+ `API.bootstrap` will automatically be called if it hasn't been
+ already.
"""
self.__doing('finalize')
self.__do_if_not_done('bootstrap')