diff options
Diffstat (limited to 'src/starter/netkey.c')
-rw-r--r-- | src/starter/netkey.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/starter/netkey.c b/src/starter/netkey.c index c4784c533..25f68e505 100644 --- a/src/starter/netkey.c +++ b/src/starter/netkey.c @@ -58,6 +58,13 @@ bool starter_netkey_init(void) void starter_netkey_cleanup(void) { + if (!lib->plugins->load(lib->plugins, NULL, + lib->settings->get_str(lib->settings, "starter.load", PLUGINS))) + { + DBG1(DBG_APP, "unable to load kernel plugins"); + return; + } hydra->kernel_interface->flush_sas(hydra->kernel_interface); hydra->kernel_interface->flush_policies(hydra->kernel_interface); + lib->plugins->unload(lib->plugins); } |