Skip to content

Instantly share code, notes, and snippets.

@bmizerany
Created August 12, 2008 20:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bmizerany/5146 to your computer and use it in GitHub Desktop.
Save bmizerany/5146 to your computer and use it in GitHub Desktop.
{application, eh,
[{description, "Cryo Proxy"},
{vsn, "0.1.0"},
{modules, [eh, eh_app, eh_proxy]},
{registered, [eh_proxy]},
{applications, [kernel, stdlib, inets]},
{mod, {eh_app, []}}
]}.
Eshell V5.6.3 (abort with ^G)
1> application:load(eh).
ok
2> application:start(eh).
{error,{not_started,inets}}
3>
4> application:start(sasl).
ok
5>
=PROGRESS REPORT==== 12-Aug-2008::13:45:46 ===
supervisor: {local,sasl_safe_sup}
started: [{pid,<0.43.0>},
{name,alarm_handler},
{mfa,{alarm_handler,start_link,[]}},
{restart_type,permanent},
{shutdown,2000},
{child_type,worker}]
=PROGRESS REPORT==== 12-Aug-2008::13:45:46 ===
supervisor: {local,sasl_safe_sup}
started: [{pid,<0.44.0>},
{name,overload},
{mfa,{overload,start_link,[]}},
{restart_type,permanent},
{shutdown,2000},
{child_type,worker}]
=PROGRESS REPORT==== 12-Aug-2008::13:45:46 ===
supervisor: {local,sasl_sup}
started: [{pid,<0.42.0>},
{name,sasl_safe_sup},
{mfa,
{supervisor,start_link,
[{local,sasl_safe_sup},sasl,safe]}},
{restart_type,permanent},
{shutdown,infinity},
{child_type,supervisor}]
=PROGRESS REPORT==== 12-Aug-2008::13:45:46 ===
supervisor: {local,sasl_sup}
started: [{pid,<0.45.0>},
{name,release_handler},
{mfa,{release_handler,start_link,[]}},
{restart_type,permanent},
{shutdown,2000},
{child_type,worker}]
=PROGRESS REPORT==== 12-Aug-2008::13:45:46 ===
application: sasl
started_at: nonode@nohost
5> application:start(eh).
{error,{not_started,inets}}
6>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment