auser-poolparty 0.2.15 → 0.2.16
Sign up to get free protection for your applications and to get access to all the features.
- data/Manifest.txt +28 -10
- data/bin/cloud +2 -2
- data/bin/cloud-provision +1 -1
- data/bin/cloud-run +19 -0
- data/bin/pool +2 -2
- data/bin/server-fire-cmd +16 -0
- data/bin/server-start-master +32 -0
- data/bin/server-start-node +32 -0
- data/lib/erlang/messenger/Rakefile +12 -0
- data/lib/erlang/messenger/ebin/master.app +19 -0
- data/lib/erlang/messenger/ebin/master_app.beam +0 -0
- data/lib/erlang/messenger/{lib/load_app.app → ebin/node.app} +6 -5
- data/lib/erlang/messenger/ebin/node_app.beam +0 -0
- data/lib/erlang/messenger/ebin/pm_client.beam +0 -0
- data/lib/erlang/messenger/ebin/pm_cluster.beam +0 -0
- data/lib/erlang/messenger/ebin/pm_event_handler.beam +0 -0
- data/lib/erlang/messenger/ebin/pm_master.beam +0 -0
- data/lib/erlang/messenger/ebin/pm_master_rel-0.1.rel +7 -0
- data/lib/erlang/messenger/ebin/pm_master_supervisor.beam +0 -0
- data/lib/erlang/messenger/ebin/pm_node.beam +0 -0
- data/lib/erlang/messenger/ebin/pm_node_rel-0.1.rel +7 -0
- data/lib/erlang/messenger/ebin/pm_node_supervisor.beam +0 -0
- data/lib/erlang/messenger/ebin/utils.beam +0 -0
- data/lib/erlang/messenger/pm_master_rel-0.1.boot +0 -0
- data/lib/erlang/messenger/pm_master_rel-0.1.script +169 -0
- data/lib/erlang/messenger/pm_node_rel-0.1.boot +0 -0
- data/lib/erlang/messenger/pm_node_rel-0.1.script +169 -0
- data/lib/erlang/messenger/src/master_app.erl +39 -0
- data/lib/erlang/messenger/src/node_app.erl +39 -0
- data/lib/erlang/messenger/src/pm_client.erl +14 -0
- data/lib/erlang/messenger/src/pm_cluster.erl +4 -1
- data/lib/erlang/messenger/src/pm_event_handler.erl +21 -0
- data/lib/erlang/messenger/src/pm_master.erl +113 -21
- data/lib/erlang/messenger/src/pm_master_supervisor.erl +33 -1
- data/lib/erlang/messenger/src/pm_node.erl +111 -65
- data/lib/erlang/messenger/src/pm_node_supervisor.erl +22 -15
- data/lib/erlang/messenger/src/utils.erl +45 -0
- data/lib/poolparty/base_packages/ruby.rb +1 -1
- data/lib/poolparty/helpers/console.rb +3 -2
- data/lib/poolparty/helpers/optioner.rb +6 -2
- data/lib/poolparty/helpers/provisioner_base.rb +5 -3
- data/lib/poolparty/helpers/provisioners/slave.rb +3 -0
- data/lib/poolparty/modules/resourcing_dsl.rb +4 -0
- data/lib/poolparty/net/remote_instance.rb +1 -1
- data/lib/poolparty/net/remoter.rb +11 -4
- data/lib/poolparty/plugins/git.rb +6 -12
- data/lib/poolparty/version.rb +1 -1
- data/poolparty.gemspec +4 -4
- data/spec/poolparty/bin/console_spec.rb +1 -1
- data/spec/poolparty/helpers/optioner_spec.rb +2 -1
- data/spec/poolparty/helpers/provisioner_base_spec.rb +1 -1
- data/spec/poolparty/helpers/provisioners/master_spec.rb +1 -1
- data/spec/poolparty/net/remote_spec.rb +51 -42
- data/spec/poolparty/pool/resources/gem_spec.rb +0 -1
- data/website/index.html +1 -1
- metadata +34 -13
- data/bin/pool-start-monitor +0 -1
- data/lib/erlang/messenger/ebin/erl_crash.dump +0 -12138
- data/lib/erlang/messenger/ebin/load_app.beam +0 -0
- data/lib/erlang/messenger/src/load_app.erl +0 -26
data/Manifest.txt
CHANGED
@@ -14,6 +14,7 @@ bin/cloud-maintain
|
|
14
14
|
bin/cloud-osxcopy
|
15
15
|
bin/cloud-provision
|
16
16
|
bin/cloud-refresh
|
17
|
+
bin/cloud-run
|
17
18
|
bin/cloud-ssh
|
18
19
|
bin/cloud-start
|
19
20
|
bin/cloud-terminate
|
@@ -24,10 +25,12 @@ bin/pool-list
|
|
24
25
|
bin/pool-provision
|
25
26
|
bin/pool-spec
|
26
27
|
bin/pool-start
|
27
|
-
bin/
|
28
|
+
bin/server-fire-cmd
|
28
29
|
bin/server-get-load
|
29
30
|
bin/server-list-active
|
30
31
|
bin/server-rerun
|
32
|
+
bin/server-start-master
|
33
|
+
bin/server-start-node
|
31
34
|
config/hoe.rb
|
32
35
|
config/requirements.rb
|
33
36
|
examples/basic.rb
|
@@ -41,25 +44,40 @@ lib/erlang/messenger/Makefile
|
|
41
44
|
lib/erlang/messenger/README
|
42
45
|
lib/erlang/messenger/Rakefile
|
43
46
|
lib/erlang/messenger/control
|
44
|
-
lib/erlang/messenger/ebin/
|
45
|
-
lib/erlang/messenger/ebin/
|
47
|
+
lib/erlang/messenger/ebin/master.app
|
48
|
+
lib/erlang/messenger/ebin/master_app.beam
|
49
|
+
lib/erlang/messenger/ebin/node.app
|
50
|
+
lib/erlang/messenger/ebin/node_app.beam
|
51
|
+
lib/erlang/messenger/ebin/pm_client.beam
|
46
52
|
lib/erlang/messenger/ebin/pm_cluster.beam
|
53
|
+
lib/erlang/messenger/ebin/pm_event_handler.beam
|
47
54
|
lib/erlang/messenger/ebin/pm_master.beam
|
55
|
+
lib/erlang/messenger/ebin/pm_master_rel-0.1.rel
|
48
56
|
lib/erlang/messenger/ebin/pm_master_supervisor.beam
|
49
57
|
lib/erlang/messenger/ebin/pm_node.beam
|
58
|
+
lib/erlang/messenger/ebin/pm_node_rel-0.1.rel
|
50
59
|
lib/erlang/messenger/ebin/pm_node_supervisor.beam
|
51
|
-
lib/erlang/messenger/ebin/
|
52
|
-
lib/erlang/messenger/
|
53
|
-
lib/erlang/messenger/
|
54
|
-
lib/erlang/messenger/
|
55
|
-
lib/erlang/messenger/
|
56
|
-
lib/erlang/messenger/
|
57
|
-
lib/erlang/messenger/src/
|
60
|
+
lib/erlang/messenger/ebin/utils.beam
|
61
|
+
lib/erlang/messenger/logs/pool_log.log
|
62
|
+
lib/erlang/messenger/pm_master_rel-0.1.boot
|
63
|
+
lib/erlang/messenger/pm_master_rel-0.1.script
|
64
|
+
lib/erlang/messenger/pm_node_rel-0.1.boot
|
65
|
+
lib/erlang/messenger/pm_node_rel-0.1.script
|
66
|
+
lib/erlang/messenger/src/master_app.erl
|
67
|
+
lib/erlang/messenger/src/node_app.erl
|
68
|
+
lib/erlang/messenger/src/pm_client.erl
|
58
69
|
lib/erlang/messenger/src/pm_cluster.erl
|
70
|
+
lib/erlang/messenger/src/pm_event_handler.erl
|
59
71
|
lib/erlang/messenger/src/pm_master.erl
|
60
72
|
lib/erlang/messenger/src/pm_master_supervisor.erl
|
61
73
|
lib/erlang/messenger/src/pm_node.erl
|
62
74
|
lib/erlang/messenger/src/pm_node_supervisor.erl
|
75
|
+
lib/erlang/messenger/src/utils.erl
|
76
|
+
lib/erlang/messenger/tmp/templates/apache2.conf
|
77
|
+
lib/erlang/messenger/tmp/templates/base.conf.erb
|
78
|
+
lib/erlang/messenger/tmp/templates/browser_fixes.conf.erb
|
79
|
+
lib/erlang/messenger/tmp/templates/mime-minimal.conf.erb
|
80
|
+
lib/erlang/messenger/tmp/templates/virtual_host.conf.erb
|
63
81
|
lib/poolparty.rb
|
64
82
|
lib/poolparty/base_packages/haproxy.rb
|
65
83
|
lib/poolparty/base_packages/heartbeat.rb
|
data/bin/cloud
CHANGED
@@ -30,11 +30,11 @@ end
|
|
30
30
|
program_name = "#{File.basename($0)}-#{name}"
|
31
31
|
program_location = File.join(Binary.binary_directory, program_name)
|
32
32
|
|
33
|
-
command_line = "#{program_location}
|
33
|
+
command_line = "#{program_location}"
|
34
34
|
|
35
35
|
# Run it from the command-line first
|
36
36
|
if Binary.available_binaries_for("cloud").include?(name)
|
37
|
-
|
37
|
+
system command_line, *ARGV
|
38
38
|
else
|
39
39
|
puts "Unknown poolparty binary: #{program_name}"
|
40
40
|
end
|
data/bin/cloud-provision
CHANGED
@@ -3,7 +3,7 @@ $:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
|
|
3
3
|
require "poolparty"
|
4
4
|
require "poolpartycl"
|
5
5
|
o = PoolParty::Optioner.new(ARGV) do |opts, optioner|
|
6
|
-
opts.on('-c [master|slaves|all]', '--class [master|
|
6
|
+
opts.on('-c [master|slaves|all]', '--class [master|slave|all]', 'Provision class (default: all)') { |c| optioner.provision_class c }
|
7
7
|
opts.on('-n name', '--name name', 'Listing for cloud name') { |c| optioner.cloudname c }
|
8
8
|
end
|
9
9
|
|
data/bin/cloud-run
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
$:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
|
3
|
+
require "poolparty"
|
4
|
+
require "poolpartycl"
|
5
|
+
|
6
|
+
@cmd = ARGV[-1]
|
7
|
+
|
8
|
+
o = PoolParty::Optioner.new(ARGV) do |opts, optioner|
|
9
|
+
opts.on('-n name', '--name name', 'Listing for cloud name') { |c| optioner.cloudname c }
|
10
|
+
opts.on('-i num', '--id num', 'Instance num to ssh (default: 0)') { |i| optioner.num i }
|
11
|
+
opts.on('-c command', '--command command', 'Command to run on the instance') { |c| optioner.command c }
|
12
|
+
end
|
13
|
+
|
14
|
+
load_pool(o.spec || Binary.get_existing_spec_location)
|
15
|
+
|
16
|
+
@cmd = o.command if (o.command)
|
17
|
+
@cloud = o.cloudname ? cloud(o.cloudname.downcase.to_sym) : cloud(clouds.keys.first)
|
18
|
+
|
19
|
+
instance = @cloud.run_command_on_instance_number( @cmd, o.num.to_i || 0 ) if @cloud
|
data/bin/pool
CHANGED
@@ -21,11 +21,11 @@ end
|
|
21
21
|
program_name = "#{File.basename($0)}-#{name}"
|
22
22
|
program_location = File.join(Binary.binary_directory, program_name)
|
23
23
|
|
24
|
-
command_line = "#{program_location}
|
24
|
+
command_line = "#{program_location}"
|
25
25
|
|
26
26
|
# Run it from the command-line first
|
27
27
|
if Binary.available_binaries_for("pool").include?(name)
|
28
|
-
|
28
|
+
system command_line, *ARGV
|
29
29
|
else
|
30
30
|
puts "Unknown poolparty binary: #{program_name}"
|
31
31
|
end
|
data/bin/server-fire-cmd
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
$:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
|
3
|
+
require "poolparty"
|
4
|
+
require "poolpartycl"
|
5
|
+
|
6
|
+
@command = ARGV[-1] || ""
|
7
|
+
|
8
|
+
o = PoolParty::Optioner.new(ARGV) do |opts, optioner|
|
9
|
+
opts.on('-c command', '--command command', 'Command to run') { |c| optioner.command c }
|
10
|
+
end
|
11
|
+
|
12
|
+
@command = o.command if o.command
|
13
|
+
|
14
|
+
# TODO: Add a whitelist of commands the
|
15
|
+
# server can run for SECURITY
|
16
|
+
puts %x[#{@command}].chomp
|
@@ -0,0 +1,32 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
$:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
|
3
|
+
require "poolparty"
|
4
|
+
require "poolpartycl"
|
5
|
+
|
6
|
+
available_monitors = PoolParty::Monitors.available_monitors
|
7
|
+
o = PoolParty::Optioner.new(ARGV) do |opts, optioner|
|
8
|
+
opts.on('-n name', '--name name', 'Host name') { |h| optioner.hostname h }
|
9
|
+
end
|
10
|
+
|
11
|
+
load_pool(o.spec || Binary.get_existing_spec_location)
|
12
|
+
|
13
|
+
include Remote
|
14
|
+
|
15
|
+
@clouds = o.cloudname ? [cloud(o.cloudname.downcase.to_sym)] : clouds
|
16
|
+
@hostname = o.hostname ? o.hostname : "master"
|
17
|
+
|
18
|
+
@clouds.each do |name, cloud|
|
19
|
+
|
20
|
+
with_cloud(cloud, {:testing => o.testing, :hostname => @hostname }) do
|
21
|
+
# TODO: Change this to be app specfic
|
22
|
+
# SECURITY RISK
|
23
|
+
append_dir = ::File.join( ::File.dirname(__FILE__), "..", "lib/erlang/messenger" )
|
24
|
+
command_line_opts = "-pa #{append_dir}/ebin -sname #{hostname} -setcookie poolparty -detached -heart"
|
25
|
+
boot_file = "#{append_dir}/pm_master_rel-0.1"
|
26
|
+
|
27
|
+
command = "erl -boot #{boot_file} #{command_line_opts}"
|
28
|
+
|
29
|
+
Kernel.system command
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
$:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
|
3
|
+
require "poolparty"
|
4
|
+
require "poolpartycl"
|
5
|
+
|
6
|
+
available_monitors = PoolParty::Monitors.available_monitors
|
7
|
+
o = PoolParty::Optioner.new(ARGV) do |opts, optioner|
|
8
|
+
opts.on('-n name', '--name name', 'Host name') { |h| optioner.hostname h }
|
9
|
+
end
|
10
|
+
|
11
|
+
load_pool(o.spec || Binary.get_existing_spec_location)
|
12
|
+
|
13
|
+
include Remote
|
14
|
+
|
15
|
+
@clouds = o.cloudname ? [cloud(o.cloudname.downcase.to_sym)] : clouds
|
16
|
+
@hostname = o.hostname ? o.hostname : "master"
|
17
|
+
|
18
|
+
@clouds.each do |name, cloud|
|
19
|
+
|
20
|
+
with_cloud(cloud, {:testing => o.testing, :hostname => @hostname }) do
|
21
|
+
# TODO: Change this to be app specfic
|
22
|
+
# SECURITY RISK
|
23
|
+
append_dir = ::File.join( ::File.dirname(__FILE__), "..", "lib/erlang/messenger" )
|
24
|
+
command_line_opts = "-pa #{append_dir}/ebin -sname #{hostname} -setcookie poolparty -detached -heart"
|
25
|
+
boot_file = "#{append_dir}/pm_node_rel-0.1"
|
26
|
+
|
27
|
+
command = "erl -boot #{boot_file} #{command_line_opts}"
|
28
|
+
|
29
|
+
Kernel.system command
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
@@ -15,8 +15,20 @@ rule ".beam" => ["%{ebin,src}X.erl"] do |t|
|
|
15
15
|
sh "erlc -D EUNIT -pa ebin -W #{ERLC_FLAGS} -o ebin #{t.source}"
|
16
16
|
end
|
17
17
|
|
18
|
+
desc "Recompile the sources"
|
19
|
+
task :recompile => [:clean, :compile]
|
20
|
+
|
21
|
+
desc "Compile all the sources"
|
18
22
|
task :compile => ['ebin'] + OBJ
|
19
23
|
|
24
|
+
desc "Rebuild the boot scripts"
|
25
|
+
task :build_boot_scripts => [:recompile] do
|
26
|
+
puts "Rebuilding boot scripts"
|
27
|
+
@version = "0.1"
|
28
|
+
cmd = "erl -pa ./ebin/ -run utils recompile_scripts #{@version} -run init stop -noshell"
|
29
|
+
Kernel.system cmd
|
30
|
+
end
|
31
|
+
|
20
32
|
task :default => :compile
|
21
33
|
|
22
34
|
task :test => [:compile] do
|
@@ -0,0 +1,19 @@
|
|
1
|
+
{application, master,
|
2
|
+
[
|
3
|
+
% Quick description of the server
|
4
|
+
{description, "Master Server for PoolParty"},
|
5
|
+
% Version
|
6
|
+
{vsn, "0.1"},
|
7
|
+
% All modules used by the application.
|
8
|
+
{modules, [master_app, pm_master, pm_master_supervisor, utils]},
|
9
|
+
% All the registered names in the application
|
10
|
+
{registered, [pm_master, pm_master_supervisor]},
|
11
|
+
% These must be started for application to run
|
12
|
+
{applications, [kernel, stdlib]},
|
13
|
+
% Environment vars
|
14
|
+
{env, []},
|
15
|
+
% Module and Args used to start
|
16
|
+
{mod, {master_app, []}},
|
17
|
+
{start_phases, []}
|
18
|
+
]
|
19
|
+
}.
|
Binary file
|
@@ -1,18 +1,19 @@
|
|
1
|
-
{application,
|
1
|
+
{application, node,
|
2
2
|
[
|
3
3
|
% Quick description of the server
|
4
|
-
{description, "
|
4
|
+
{description, "Node Server for PoolParty"},
|
5
5
|
% Version
|
6
6
|
{vsn, "0.1"},
|
7
7
|
% All modules used by the application.
|
8
|
-
{modules, [
|
8
|
+
{modules, [node_app, pm_node, pm_node_supervisor, utils]},
|
9
9
|
% All the registered names in the application
|
10
|
-
{registered, [
|
10
|
+
{registered, [pm_node, pm_node_supervisor]},
|
11
11
|
% These must be started for application to run
|
12
12
|
{applications, [kernel, stdlib]},
|
13
13
|
% Environment vars
|
14
14
|
{env, []},
|
15
15
|
% Module and Args used to start
|
16
|
-
{mod, {
|
16
|
+
{mod, {node_app, []}},
|
17
|
+
{start_phases, []}
|
17
18
|
]
|
18
19
|
}.
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,169 @@
|
|
1
|
+
%% script generated at {2008,10,23} {2,11,55}
|
2
|
+
{script,
|
3
|
+
{"pm_master_rel","0.1"},
|
4
|
+
[{preLoaded,
|
5
|
+
[erlang,erl_prim_loader,prim_file,prim_inet,init,otp_ring0]},
|
6
|
+
{progress,preloaded},
|
7
|
+
{path,
|
8
|
+
["/opt/local/lib/erlang/lib/kernel-2.12.2/ebin",
|
9
|
+
"/opt/local/lib/erlang/lib/stdlib-1.15.2/ebin"]},
|
10
|
+
{primLoad,[error_handler]},
|
11
|
+
{kernel_load_completed},
|
12
|
+
{progress,kernel_load_completed},
|
13
|
+
{path,["/opt/local/lib/erlang/lib/kernel-2.12.2/ebin"]},
|
14
|
+
{primLoad,
|
15
|
+
[zlib,wrap_log_reader,user_sup,user_drv,user,seq_trace,rpc,
|
16
|
+
ram_file,pg2,packages,os,net_kernel,net_adm,net,
|
17
|
+
kernel_config,kernel,inet_udp,inet_tcp_dist,inet_tcp,
|
18
|
+
inet_sctp,inet_res,inet_parse,inet_hosts,
|
19
|
+
inet_gethost_native,inet_dns,inet_db,inet_config,inet6_udp,
|
20
|
+
inet6_tcp_dist,inet6_tcp,inet,hipe_unified_loader,heart,
|
21
|
+
group,global_search,global_group,global,gen_udp,gen_tcp,
|
22
|
+
gen_sctp,file_server,file_io_server,file,erts_debug,
|
23
|
+
error_logger,erl_reply,erl_epmd,erl_distribution,erl_ddll,
|
24
|
+
erl_boot_server,dist_util,dist_ac,disk_log_sup,
|
25
|
+
disk_log_server,disk_log_1,disk_log,code_server,code_aux,
|
26
|
+
code,auth,application_starter,application_master,
|
27
|
+
application_controller,application]},
|
28
|
+
{path,["/opt/local/lib/erlang/lib/stdlib-1.15.2/ebin"]},
|
29
|
+
{primLoad,
|
30
|
+
[zip,win32reg,timer,sys,supervisor_bridge,supervisor,string,
|
31
|
+
sofs,slave,shell_default,shell,sets,regexp,random,queue,
|
32
|
+
qlc_pt,qlc,proplists,proc_lib,pool,pg,otp_internal,ordsets,
|
33
|
+
orddict,ms_transform,math,log_mf_h,lists,lib,io_lib_pretty,
|
34
|
+
io_lib_fread,io_lib_format,io_lib,io,gen_server,gen_fsm,
|
35
|
+
gen_event,gen,gb_trees,gb_sets,filename,filelib,file_sorter,
|
36
|
+
eval_bits,ets,escript,error_logger_tty_h,
|
37
|
+
error_logger_file_h,erl_tar,erl_scan,erl_pp,erl_posix_msg,
|
38
|
+
erl_parse,erl_lint,erl_internal,erl_expand_records,erl_eval,
|
39
|
+
erl_compile,erl_bits,epp,edlin_expand,edlin,digraph_utils,
|
40
|
+
digraph,dict,dets_v9,dets_v8,dets_utils,dets_sup,
|
41
|
+
dets_server,dets,calendar,c,beam_lib,base64,array]},
|
42
|
+
{path,["/opt/local/lib/erlang/lib/sasl-2.1.5.2/ebin"]},
|
43
|
+
{primLoad,
|
44
|
+
[systools_relup,systools_rc,systools_make,systools_lib,
|
45
|
+
systools,sasl_report_tty_h,sasl_report_file_h,sasl_report,
|
46
|
+
sasl,release_handler_1,release_handler,rb_format_supp,rb,
|
47
|
+
overload,misc_supp,format_lib_supp,erlsrv,alarm_handler]},
|
48
|
+
{path,
|
49
|
+
["/Users/auser/Sites/work/citrusbyte/internal/gems/pool-party/poolparty/lib/erlang/messenger/ebin"]},
|
50
|
+
{primLoad,[utils,pm_master_supervisor,pm_master,master_app]},
|
51
|
+
{progress,modules_loaded},
|
52
|
+
{path,
|
53
|
+
["/opt/local/lib/erlang/lib/kernel-2.12.2/ebin",
|
54
|
+
"/opt/local/lib/erlang/lib/stdlib-1.15.2/ebin",
|
55
|
+
"/opt/local/lib/erlang/lib/sasl-2.1.5.2/ebin",
|
56
|
+
"/Users/auser/Sites/work/citrusbyte/internal/gems/pool-party/poolparty/lib/erlang/messenger/ebin"]},
|
57
|
+
{kernelProcess,heart,{heart,start,[]}},
|
58
|
+
{kernelProcess,error_logger,{error_logger,start_link,[]}},
|
59
|
+
{kernelProcess,application_controller,
|
60
|
+
{application_controller,start,
|
61
|
+
[{application,kernel,
|
62
|
+
[{description,"ERTS CXC 138 10"},
|
63
|
+
{vsn,"2.12.2"},
|
64
|
+
{id,[]},
|
65
|
+
{modules,
|
66
|
+
[application,application_controller,application_master,
|
67
|
+
application_starter,auth,code,code_aux,packages,
|
68
|
+
code_server,dist_util,erl_boot_server,
|
69
|
+
erl_distribution,erl_prim_loader,erl_reply,erlang,
|
70
|
+
error_handler,error_logger,file,file_server,
|
71
|
+
file_io_server,prim_file,global,global_group,
|
72
|
+
global_search,group,heart,hipe_unified_loader,
|
73
|
+
inet6_tcp,inet6_tcp_dist,inet6_udp,inet_config,
|
74
|
+
inet_hosts,inet_gethost_native,inet_tcp_dist,init,
|
75
|
+
kernel,kernel_config,net,net_adm,net_kernel,os,
|
76
|
+
ram_file,rpc,user,user_drv,user_sup,disk_log,
|
77
|
+
disk_log_1,disk_log_server,disk_log_sup,dist_ac,
|
78
|
+
erl_ddll,erl_epmd,erts_debug,gen_tcp,gen_udp,gen_sctp,
|
79
|
+
prim_inet,inet,inet_db,inet_dns,inet_parse,inet_res,
|
80
|
+
inet_tcp,inet_udp,inet_sctp,pg2,seq_trace,
|
81
|
+
wrap_log_reader,zlib,otp_ring0]},
|
82
|
+
{registered,
|
83
|
+
[application_controller,erl_reply,auth,boot_server,
|
84
|
+
code_server,disk_log_server,disk_log_sup,
|
85
|
+
erl_prim_loader,error_logger,file_server_2,
|
86
|
+
fixtable_server,global_group,global_name_server,heart,
|
87
|
+
init,kernel_config,kernel_sup,net_kernel,net_sup,rex,
|
88
|
+
user,os_server,ddll_server,erl_epmd,inet_db,pg2]},
|
89
|
+
{applications,[]},
|
90
|
+
{included_applications,[]},
|
91
|
+
{env,[{error_logger,tty}]},
|
92
|
+
{start_phases,undefined},
|
93
|
+
{maxT,infinity},
|
94
|
+
{maxP,infinity},
|
95
|
+
{mod,{kernel,[]}}]}]}},
|
96
|
+
{progress,init_kernel_started},
|
97
|
+
{apply,
|
98
|
+
{application,load,
|
99
|
+
[{application,stdlib,
|
100
|
+
[{description,"ERTS CXC 138 10"},
|
101
|
+
{vsn,"1.15.2"},
|
102
|
+
{id,[]},
|
103
|
+
{modules,
|
104
|
+
[array,base64,beam_lib,c,calendar,dets,dets_server,
|
105
|
+
dets_sup,dets_utils,dets_v8,dets_v9,dict,digraph,
|
106
|
+
digraph_utils,edlin,edlin_expand,epp,eval_bits,
|
107
|
+
erl_bits,erl_compile,erl_eval,erl_expand_records,
|
108
|
+
erl_internal,erl_lint,erl_parse,erl_posix_msg,erl_pp,
|
109
|
+
erl_scan,erl_tar,error_logger_file_h,
|
110
|
+
error_logger_tty_h,escript,ets,file_sorter,filelib,
|
111
|
+
filename,gb_trees,gb_sets,gen,gen_event,gen_fsm,
|
112
|
+
gen_server,io,io_lib,io_lib_format,io_lib_fread,
|
113
|
+
io_lib_pretty,lib,lists,log_mf_h,math,ms_transform,
|
114
|
+
orddict,ordsets,otp_internal,pg,pool,proc_lib,
|
115
|
+
proplists,qlc,qlc_pt,queue,random,regexp,sets,shell,
|
116
|
+
shell_default,slave,sofs,string,supervisor,
|
117
|
+
supervisor_bridge,sys,timer,win32reg,zip]},
|
118
|
+
{registered,
|
119
|
+
[timer_server,rsh_starter,take_over_monitor,
|
120
|
+
pool_master,dets]},
|
121
|
+
{applications,[kernel]},
|
122
|
+
{included_applications,[]},
|
123
|
+
{env,[]},
|
124
|
+
{start_phases,undefined},
|
125
|
+
{maxT,infinity},
|
126
|
+
{maxP,infinity}]}]}},
|
127
|
+
{apply,
|
128
|
+
{application,load,
|
129
|
+
[{application,sasl,
|
130
|
+
[{description,"SASL CXC 138 11"},
|
131
|
+
{vsn,"2.1.5.2"},
|
132
|
+
{id,[]},
|
133
|
+
{modules,
|
134
|
+
[sasl,alarm_handler,format_lib_supp,misc_supp,overload,
|
135
|
+
rb,rb_format_supp,release_handler,release_handler_1,
|
136
|
+
erlsrv,sasl_report,sasl_report_tty_h,
|
137
|
+
sasl_report_file_h,systools,systools_make,systools_rc,
|
138
|
+
systools_relup,systools_lib]},
|
139
|
+
{registered,
|
140
|
+
[sasl_sup,alarm_handler,overload,release_handler]},
|
141
|
+
{applications,[kernel,stdlib]},
|
142
|
+
{included_applications,[]},
|
143
|
+
{env,[{sasl_error_logger,tty},{errlog_type,all}]},
|
144
|
+
{start_phases,undefined},
|
145
|
+
{maxT,infinity},
|
146
|
+
{maxP,infinity},
|
147
|
+
{mod,{sasl,[]}}]}]}},
|
148
|
+
{apply,
|
149
|
+
{application,load,
|
150
|
+
[{application,master,
|
151
|
+
[{description,"Master Server for PoolParty"},
|
152
|
+
{vsn,"0.1"},
|
153
|
+
{id,[]},
|
154
|
+
{modules,[master_app,pm_master,pm_master_supervisor,utils]},
|
155
|
+
{registered,[pm_master,pm_master_supervisor]},
|
156
|
+
{applications,[kernel,stdlib]},
|
157
|
+
{included_applications,[]},
|
158
|
+
{env,[]},
|
159
|
+
{start_phases,[]},
|
160
|
+
{maxT,infinity},
|
161
|
+
{maxP,infinity},
|
162
|
+
{mod,{master_app,[]}}]}]}},
|
163
|
+
{progress,applications_loaded},
|
164
|
+
{apply,{application,start_boot,[kernel,permanent]}},
|
165
|
+
{apply,{application,start_boot,[stdlib,permanent]}},
|
166
|
+
{apply,{application,start_boot,[sasl,permanent]}},
|
167
|
+
{apply,{application,start_boot,[master,permanent]}},
|
168
|
+
{apply,{c,erlangrc,[]}},
|
169
|
+
{progress,started}]}.
|
Binary file
|