Created
August 12, 2008 20:42
-
-
Save bmizerany/5146 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{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, []}} | |
]}. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Eshell V5.6.3 (abort with ^G) | |
1> application:load(eh). | |
ok | |
2> application:start(eh). | |
{error,{not_started,inets}} | |
3> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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