install script working as it should

This commit is contained in:
Tristaan
2017-11-17 06:03:39 +01:00
parent df63ebfaaa
commit 549073569f
26 changed files with 2600 additions and 25 deletions

View File

@@ -0,0 +1,20 @@
-module(mmc_logmon_sup).
-behaviour(supervisor).
-export([init/1]).
init(_) ->
{ok, {
{one_for_one, 5, 1},
[
{listener,
{aaa, start_link, []},
permanent, 100, worker,
[aaa]
},
{server,
{bbb, start_link, []},
permanent, 100, worker,
[bbb]
}
]
}}.