mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Added API.load_plugins() place-holder, which cascades call to API.bootstrap()
This commit is contained in:
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user