aboutsummaryrefslogtreecommitdiff
path: root/src/ext_mod.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext_mod.erl')
-rw-r--r--src/ext_mod.erl9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/ext_mod.erl b/src/ext_mod.erl
index 0d734e08c..328bb829e 100644
--- a/src/ext_mod.erl
+++ b/src/ext_mod.erl
@@ -32,7 +32,7 @@
-export([start_link/0, update/0, check/1,
available_command/0, available/0, available/1,
installed_command/0, installed/0, installed/1,
- install/1, uninstall/1, upgrade/0, upgrade/1,
+ install/1, uninstall/1, upgrade/0, upgrade/1, add_paths/0,
add_sources/1, add_sources/2, del_sources/1, modules_dir/0,
config_dir/0, opt_type/1, get_commands_spec/0]).
@@ -54,13 +54,16 @@ start_link() ->
init([]) ->
process_flag(trap_exit, true),
- [code:add_patha(module_ebin_dir(Module))
- || {Module, _} <- installed()],
+ add_paths(),
application:start(inets),
inets:start(httpc, [{profile, ext_mod}]),
ejabberd_commands:register_commands(get_commands_spec()),
{ok, #state{}}.
+add_paths() ->
+ [code:add_patha(module_ebin_dir(Module))
+ || {Module, _} <- installed()].
+
handle_call(_Request, _From, State) ->
Reply = ok,
{reply, Reply, State}.