mcollective-client 2.7.0 → 2.8.0
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/mcollective/agent/discovery.rb +37 -0
- data/lib/mcollective/agent/rpcutil.ddl +220 -0
- data/lib/mcollective/agent/rpcutil.rb +108 -0
- data/lib/mcollective/aggregate/average.ddl +33 -0
- data/lib/mcollective/aggregate/average.rb +29 -0
- data/lib/mcollective/aggregate/result.rb +3 -3
- data/lib/mcollective/aggregate/sum.ddl +33 -0
- data/lib/mcollective/aggregate/sum.rb +18 -0
- data/lib/mcollective/aggregate/summary.ddl +33 -0
- data/lib/mcollective/aggregate/summary.rb +53 -0
- data/lib/mcollective/aggregate.rb +2 -2
- data/lib/mcollective/application/completion.rb +104 -0
- data/lib/mcollective/application/facts.rb +62 -0
- data/lib/mcollective/application/find.rb +21 -0
- data/lib/mcollective/application/help.rb +28 -0
- data/lib/mcollective/application/inventory.rb +344 -0
- data/lib/mcollective/application/ping.rb +77 -0
- data/lib/mcollective/application/plugin.rb +369 -0
- data/lib/mcollective/application/rpc.rb +121 -0
- data/lib/mcollective/application.rb +2 -0
- data/lib/mcollective/audit/logfile.rb +26 -0
- data/lib/mcollective/config.rb +16 -9
- data/lib/mcollective/connector/activemq.ddl +9 -0
- data/lib/mcollective/connector/activemq.rb +572 -0
- data/lib/mcollective/connector/rabbitmq.ddl +9 -0
- data/lib/mcollective/connector/rabbitmq.rb +484 -0
- data/lib/mcollective/connector.rb +1 -1
- data/lib/mcollective/data/agent_data.ddl +22 -0
- data/lib/mcollective/data/agent_data.rb +17 -0
- data/lib/mcollective/data/collective_data.ddl +20 -0
- data/lib/mcollective/data/collective_data.rb +9 -0
- data/lib/mcollective/data/fact_data.ddl +28 -0
- data/lib/mcollective/data/fact_data.rb +55 -0
- data/lib/mcollective/data/fstat_data.ddl +89 -0
- data/lib/mcollective/data/fstat_data.rb +56 -0
- data/lib/mcollective/data.rb +2 -2
- data/lib/mcollective/ddl.rb +4 -4
- data/lib/mcollective/discovery/flatfile.ddl +11 -0
- data/lib/mcollective/discovery/flatfile.rb +48 -0
- data/lib/mcollective/discovery/mc.ddl +11 -0
- data/lib/mcollective/discovery/mc.rb +30 -0
- data/lib/mcollective/discovery/stdin.ddl +11 -0
- data/lib/mcollective/discovery/stdin.rb +66 -0
- data/lib/mcollective/facts/yaml_facts.rb +61 -0
- data/lib/mcollective/facts.rb +1 -1
- data/lib/mcollective/generators.rb +3 -3
- data/lib/mcollective/logger.rb +1 -1
- data/lib/mcollective/matcher/scanner.rb +1 -1
- data/lib/mcollective/matcher.rb +2 -2
- data/lib/mcollective/pluginpackager/debpackage_packager.rb +237 -0
- data/lib/mcollective/pluginpackager/modulepackage_packager.rb +127 -0
- data/lib/mcollective/pluginpackager/ospackage_packager.rb +59 -0
- data/lib/mcollective/pluginpackager/rpmpackage_packager.rb +180 -0
- data/lib/mcollective/pluginpackager/templates/debian/Makefile.erb +7 -0
- data/lib/mcollective/pluginpackager/templates/debian/changelog.erb +5 -0
- data/lib/mcollective/pluginpackager/templates/debian/compat.erb +1 -0
- data/lib/mcollective/pluginpackager/templates/debian/control.erb +15 -0
- data/lib/mcollective/pluginpackager/templates/debian/copyright.erb +8 -0
- data/lib/mcollective/pluginpackager/templates/debian/rules.erb +6 -0
- data/lib/mcollective/pluginpackager/templates/module/Modulefile.erb +5 -0
- data/lib/mcollective/pluginpackager/templates/module/README.md.erb +37 -0
- data/lib/mcollective/pluginpackager/templates/module/_manifest.pp.erb +9 -0
- data/lib/mcollective/pluginpackager/templates/redhat/rpm_spec.erb +63 -0
- data/lib/mcollective/pluginpackager.rb +2 -2
- data/lib/mcollective/registration/agentlist.rb +10 -0
- data/lib/mcollective/registration.rb +1 -1
- data/lib/mcollective/rpc/stats.rb +0 -1
- data/lib/mcollective/rpc.rb +11 -11
- data/lib/mcollective/security/aes_security.rb +394 -0
- data/lib/mcollective/security/psk.rb +117 -0
- data/lib/mcollective/security/ssl.rb +328 -0
- data/lib/mcollective/security.rb +1 -1
- data/lib/mcollective/util.rb +18 -18
- data/lib/mcollective/validator/array_validator.ddl +7 -0
- data/lib/mcollective/validator/array_validator.rb +9 -0
- data/lib/mcollective/validator/ipv4address_validator.ddl +7 -0
- data/lib/mcollective/validator/ipv4address_validator.rb +16 -0
- data/lib/mcollective/validator/ipv6address_validator.ddl +7 -0
- data/lib/mcollective/validator/ipv6address_validator.rb +16 -0
- data/lib/mcollective/validator/length_validator.ddl +7 -0
- data/lib/mcollective/validator/length_validator.rb +11 -0
- data/lib/mcollective/validator/regex_validator.ddl +7 -0
- data/lib/mcollective/validator/regex_validator.rb +9 -0
- data/lib/mcollective/validator/shellsafe_validator.ddl +7 -0
- data/lib/mcollective/validator/shellsafe_validator.rb +13 -0
- data/lib/mcollective/validator/typecheck_validator.ddl +7 -0
- data/lib/mcollective/validator/typecheck_validator.rb +28 -0
- data/lib/mcollective.rb +31 -31
- data/spec/spec_helper.rb +0 -5
- data/spec/unit/{plugins/mcollective → mcollective}/agent/rpcutil_spec.rb +1 -1
- data/spec/unit/{agents_spec.rb → mcollective/agents_spec.rb} +0 -0
- data/spec/unit/{plugins/mcollective → mcollective}/aggregate/average_spec.rb +1 -1
- data/spec/unit/{aggregate → mcollective/aggregate}/base_spec.rb +0 -0
- data/spec/unit/{aggregate → mcollective/aggregate}/result/base_spec.rb +0 -0
- data/spec/unit/{aggregate → mcollective/aggregate}/result/collection_result_spec.rb +0 -0
- data/spec/unit/{aggregate → mcollective/aggregate}/result/numeric_result_spec.rb +0 -0
- data/spec/unit/{plugins/mcollective → mcollective}/aggregate/sum_spec.rb +1 -1
- data/spec/unit/{plugins/mcollective → mcollective}/aggregate/summary_spec.rb +1 -1
- data/spec/unit/{aggregate_spec.rb → mcollective/aggregate_spec.rb} +0 -0
- data/spec/unit/{plugins/mcollective → mcollective}/application/plugin_spec.rb +1 -1
- data/spec/unit/{application_spec.rb → mcollective/application_spec.rb} +0 -0
- data/spec/unit/{applications_spec.rb → mcollective/applications_spec.rb} +1 -1
- data/spec/unit/{array_spec.rb → mcollective/array_spec.rb} +0 -0
- data/spec/unit/{plugins/mcollective → mcollective}/audit/logfile_spec.rb +1 -1
- data/spec/unit/{cache_spec.rb → mcollective/cache_spec.rb} +0 -0
- data/spec/unit/{client_spec.rb → mcollective/client_spec.rb} +0 -0
- data/spec/unit/{config_spec.rb → mcollective/config_spec.rb} +12 -7
- data/spec/unit/{plugins/mcollective → mcollective}/connector/activemq_spec.rb +1 -1
- data/spec/unit/{connector → mcollective/connector}/base_spec.rb +0 -0
- data/spec/unit/{plugins/mcollective → mcollective}/connector/rabbitmq_spec.rb +1 -1
- data/spec/unit/{plugins/mcollective → mcollective}/data/agent_data_spec.rb +1 -1
- data/spec/unit/{data → mcollective/data}/base_spec.rb +0 -0
- data/spec/unit/{plugins/mcollective → mcollective}/data/collective_data_spec.rb +1 -1
- data/spec/unit/{plugins/mcollective → mcollective}/data/fact_data_spec.rb +1 -1
- data/spec/unit/{plugins/mcollective → mcollective}/data/fstat_data_spec.rb +1 -1
- data/spec/unit/{data → mcollective/data}/result_spec.rb +0 -0
- data/spec/unit/{data_spec.rb → mcollective/data_spec.rb} +0 -0
- data/spec/unit/{ddl → mcollective/ddl}/agentddl_spec.rb +0 -0
- data/spec/unit/{ddl → mcollective/ddl}/base_spec.rb +0 -0
- data/spec/unit/{ddl → mcollective/ddl}/dataddl_spec.rb +0 -0
- data/spec/unit/{ddl → mcollective/ddl}/discoveryddl_spec.rb +0 -0
- data/spec/unit/{ddl_spec.rb → mcollective/ddl_spec.rb} +0 -0
- data/spec/unit/{plugins/mcollective → mcollective}/discovery/flatfile_spec.rb +1 -1
- data/spec/unit/{plugins/mcollective → mcollective}/discovery/mc_spec.rb +1 -1
- data/spec/unit/{plugins/mcollective → mcollective}/discovery/stdin_spec.rb +1 -1
- data/spec/unit/{discovery_spec.rb → mcollective/discovery_spec.rb} +0 -0
- data/spec/unit/{facts → mcollective/facts}/base_spec.rb +0 -0
- data/spec/unit/{plugins/mcollective → mcollective}/facts/yaml_facts_spec.rb +1 -1
- data/spec/unit/{facts_spec.rb → mcollective/facts_spec.rb} +0 -0
- data/spec/unit/{generators → mcollective/generators}/agent_generator_spec.rb +0 -0
- data/spec/unit/{generators → mcollective/generators}/base_spec.rb +0 -0
- data/spec/unit/{generators → mcollective/generators}/data_generator_spec.rb +0 -0
- data/spec/unit/{generators → mcollective/generators}/snippets/agent_ddl +0 -0
- data/spec/unit/{generators → mcollective/generators}/snippets/data_ddl +0 -0
- data/spec/unit/{log_spec.rb → mcollective/log_spec.rb} +0 -0
- data/spec/unit/{logger → mcollective/logger}/base_spec.rb +0 -0
- data/spec/unit/{logger → mcollective/logger}/console_logger_spec.rb +0 -0
- data/spec/unit/{logger → mcollective/logger}/file_logger_spec.rb +0 -0
- data/spec/unit/{logger → mcollective/logger}/syslog_logger_spec.rb +0 -0
- data/spec/unit/{matcher → mcollective/matcher}/parser_spec.rb +0 -0
- data/spec/unit/{matcher → mcollective/matcher}/scanner_spec.rb +0 -0
- data/spec/unit/{matcher_spec.rb → mcollective/matcher_spec.rb} +0 -0
- data/spec/unit/{message_spec.rb → mcollective/message_spec.rb} +0 -0
- data/spec/unit/{monkey_patches_spec.rb → mcollective/monkey_patches_spec.rb} +0 -0
- data/spec/unit/{optionparser_spec.rb → mcollective/optionparser_spec.rb} +0 -0
- data/spec/unit/{plugins/mcollective → mcollective}/packagers/debpackage_packager_spec.rb +1 -1
- data/spec/unit/{plugins/mcollective → mcollective}/packagers/modulepackage_packager_spec.rb +1 -1
- data/spec/unit/{plugins/mcollective → mcollective}/packagers/ospackage_spec.rb +1 -1
- data/spec/unit/{plugins/mcollective → mcollective}/packagers/rpmpackage_packager_spec.rb +1 -1
- data/spec/unit/{pluginmanager_spec.rb → mcollective/pluginmanager_spec.rb} +0 -0
- data/spec/unit/{pluginpackager → mcollective/pluginpackager}/agent_definition_spec.rb +0 -0
- data/spec/unit/{pluginpackager → mcollective/pluginpackager}/standard_definition_spec.rb +0 -0
- data/spec/unit/{pluginpackager_spec.rb → mcollective/pluginpackager_spec.rb} +0 -0
- data/spec/unit/{registration → mcollective/registration}/base_spec.rb +0 -0
- data/spec/unit/{rpc → mcollective/rpc}/actionrunner_spec.rb +0 -0
- data/spec/unit/{rpc → mcollective/rpc}/agent_spec.rb +0 -0
- data/spec/unit/{rpc → mcollective/rpc}/client_spec.rb +0 -0
- data/spec/unit/{rpc → mcollective/rpc}/helpers_spec.rb +0 -0
- data/spec/unit/{rpc → mcollective/rpc}/reply_spec.rb +0 -0
- data/spec/unit/{rpc → mcollective/rpc}/request_spec.rb +0 -0
- data/spec/unit/{rpc → mcollective/rpc}/result_spec.rb +0 -0
- data/spec/unit/{rpc → mcollective/rpc}/stats_spec.rb +0 -0
- data/spec/unit/{rpc_spec.rb → mcollective/rpc_spec.rb} +0 -0
- data/spec/unit/{runner_spec.rb → mcollective/runner_spec.rb} +0 -0
- data/spec/unit/{runnerstats_spec.rb → mcollective/runnerstats_spec.rb} +0 -0
- data/spec/unit/{plugins/mcollective → mcollective}/security/aes_security_spec.rb +1 -1
- data/spec/unit/{security → mcollective/security}/base_spec.rb +0 -0
- data/spec/unit/{plugins/mcollective → mcollective}/security/psk_spec.rb +1 -1
- data/spec/unit/{shell_spec.rb → mcollective/shell_spec.rb} +0 -0
- data/spec/unit/{ssl_spec.rb → mcollective/ssl_spec.rb} +12 -12
- data/spec/unit/{string_spec.rb → mcollective/string_spec.rb} +0 -0
- data/spec/unit/{symbol_spec.rb → mcollective/symbol_spec.rb} +0 -0
- data/spec/unit/{unix_daemon_spec.rb → mcollective/unix_daemon_spec.rb} +0 -0
- data/spec/unit/{util_spec.rb → mcollective/util_spec.rb} +28 -6
- data/spec/unit/{plugins/mcollective → mcollective}/validator/array_validator_spec.rb +1 -1
- data/spec/unit/{plugins/mcollective → mcollective}/validator/ipv4address_validator_spec.rb +1 -1
- data/spec/unit/{plugins/mcollective → mcollective}/validator/ipv6address_validator_spec.rb +1 -1
- data/spec/unit/{plugins/mcollective → mcollective}/validator/length_validator_spec.rb +1 -1
- data/spec/unit/{plugins/mcollective → mcollective}/validator/regex_validator_spec.rb +1 -1
- data/spec/unit/{plugins/mcollective → mcollective}/validator/shellsafe_validator_spec.rb +1 -1
- data/spec/unit/{plugins/mcollective → mcollective}/validator/typecheck_validator_spec.rb +1 -1
- data/spec/unit/{validator_spec.rb → mcollective/validator_spec.rb} +1 -1
- data/spec/unit/{vendor_spec.rb → mcollective/vendor_spec.rb} +2 -2
- data/spec/unit/{windows_daemon_spec.rb → mcollective/windows_daemon_spec.rb} +0 -0
- metadata +361 -284
- checksums.yaml +0 -7
metadata
CHANGED
@@ -1,55 +1,62 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mcollective-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.8.0
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Puppet Labs
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date:
|
12
|
+
date: 2015-02-03 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: systemu
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
16
18
|
requirements:
|
17
|
-
- - '>='
|
19
|
+
- - ! '>='
|
18
20
|
- !ruby/object:Gem::Version
|
19
21
|
version: '0'
|
20
22
|
type: :runtime
|
21
23
|
prerelease: false
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
23
26
|
requirements:
|
24
|
-
- - '>='
|
27
|
+
- - ! '>='
|
25
28
|
- !ruby/object:Gem::Version
|
26
29
|
version: '0'
|
27
30
|
- !ruby/object:Gem::Dependency
|
28
31
|
name: json
|
29
32
|
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
30
34
|
requirements:
|
31
|
-
- - '>='
|
35
|
+
- - ! '>='
|
32
36
|
- !ruby/object:Gem::Version
|
33
37
|
version: '0'
|
34
38
|
type: :runtime
|
35
39
|
prerelease: false
|
36
40
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
37
42
|
requirements:
|
38
|
-
- - '>='
|
43
|
+
- - ! '>='
|
39
44
|
- !ruby/object:Gem::Version
|
40
45
|
version: '0'
|
41
46
|
- !ruby/object:Gem::Dependency
|
42
47
|
name: stomp
|
43
48
|
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
44
50
|
requirements:
|
45
|
-
- - '>='
|
51
|
+
- - ! '>='
|
46
52
|
- !ruby/object:Gem::Version
|
47
53
|
version: '0'
|
48
54
|
type: :runtime
|
49
55
|
prerelease: false
|
50
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
51
58
|
requirements:
|
52
|
-
- - '>='
|
59
|
+
- - ! '>='
|
53
60
|
- !ruby/object:Gem::Version
|
54
61
|
version: '0'
|
55
62
|
description: Client libraries for the Mcollective Application Server
|
@@ -59,199 +66,267 @@ executables:
|
|
59
66
|
extensions: []
|
60
67
|
extra_rdoc_files: []
|
61
68
|
files:
|
62
|
-
- lib/mcollective.rb
|
63
|
-
- lib/mcollective/
|
64
|
-
- lib/mcollective/
|
65
|
-
- lib/mcollective/
|
66
|
-
- lib/mcollective/
|
67
|
-
- lib/mcollective/
|
68
|
-
- lib/mcollective/
|
69
|
+
- lib/mcollective/rpc.rb
|
70
|
+
- lib/mcollective/monkey_patches.rb
|
71
|
+
- lib/mcollective/connector.rb
|
72
|
+
- lib/mcollective/pluginmanager.rb
|
73
|
+
- lib/mcollective/client.rb
|
74
|
+
- lib/mcollective/rpc/helpers.rb
|
75
|
+
- lib/mcollective/rpc/client.rb
|
76
|
+
- lib/mcollective/rpc/progress.rb
|
77
|
+
- lib/mcollective/rpc/reply.rb
|
78
|
+
- lib/mcollective/rpc/audit.rb
|
79
|
+
- lib/mcollective/rpc/result.rb
|
80
|
+
- lib/mcollective/rpc/agent.rb
|
81
|
+
- lib/mcollective/rpc/request.rb
|
82
|
+
- lib/mcollective/rpc/stats.rb
|
83
|
+
- lib/mcollective/rpc/actionrunner.rb
|
84
|
+
- lib/mcollective/facts/yaml_facts.rb
|
85
|
+
- lib/mcollective/facts/base.rb
|
86
|
+
- lib/mcollective/security.rb
|
87
|
+
- lib/mcollective/log.rb
|
88
|
+
- lib/mcollective/matcher.rb
|
89
|
+
- lib/mcollective/unix_daemon.rb
|
90
|
+
- lib/mcollective/application/rpc.rb
|
91
|
+
- lib/mcollective/application/plugin.rb
|
92
|
+
- lib/mcollective/application/ping.rb
|
93
|
+
- lib/mcollective/application/completion.rb
|
94
|
+
- lib/mcollective/application/facts.rb
|
95
|
+
- lib/mcollective/application/help.rb
|
96
|
+
- lib/mcollective/application/inventory.rb
|
97
|
+
- lib/mcollective/application/find.rb
|
98
|
+
- lib/mcollective/validator/regex_validator.ddl
|
99
|
+
- lib/mcollective/validator/typecheck_validator.ddl
|
100
|
+
- lib/mcollective/validator/shellsafe_validator.ddl
|
101
|
+
- lib/mcollective/validator/ipv6address_validator.ddl
|
102
|
+
- lib/mcollective/validator/length_validator.ddl
|
103
|
+
- lib/mcollective/validator/shellsafe_validator.rb
|
104
|
+
- lib/mcollective/validator/ipv4address_validator.ddl
|
105
|
+
- lib/mcollective/validator/ipv4address_validator.rb
|
106
|
+
- lib/mcollective/validator/array_validator.ddl
|
107
|
+
- lib/mcollective/validator/length_validator.rb
|
108
|
+
- lib/mcollective/validator/regex_validator.rb
|
109
|
+
- lib/mcollective/validator/ipv6address_validator.rb
|
110
|
+
- lib/mcollective/validator/array_validator.rb
|
111
|
+
- lib/mcollective/validator/typecheck_validator.rb
|
112
|
+
- lib/mcollective/windows_daemon.rb
|
113
|
+
- lib/mcollective/aggregate/sum.ddl
|
114
|
+
- lib/mcollective/aggregate/average.ddl
|
115
|
+
- lib/mcollective/aggregate/summary.ddl
|
69
116
|
- lib/mcollective/aggregate/result/collection_result.rb
|
70
117
|
- lib/mcollective/aggregate/result/numeric_result.rb
|
118
|
+
- lib/mcollective/aggregate/result/base.rb
|
119
|
+
- lib/mcollective/aggregate/sum.rb
|
120
|
+
- lib/mcollective/aggregate/result.rb
|
121
|
+
- lib/mcollective/aggregate/average.rb
|
122
|
+
- lib/mcollective/aggregate/summary.rb
|
123
|
+
- lib/mcollective/aggregate/base.rb
|
124
|
+
- lib/mcollective/optionparser.rb
|
125
|
+
- lib/mcollective/ssl.rb
|
126
|
+
- lib/mcollective/runnerstats.rb
|
127
|
+
- lib/mcollective/shell.rb
|
128
|
+
- lib/mcollective/validator.rb
|
129
|
+
- lib/mcollective/vendor/require_vendored.rb
|
130
|
+
- lib/mcollective/matcher/parser.rb
|
131
|
+
- lib/mcollective/matcher/scanner.rb
|
132
|
+
- lib/mcollective/audit/logfile.rb
|
133
|
+
- lib/mcollective/config.rb
|
134
|
+
- lib/mcollective/message.rb
|
71
135
|
- lib/mcollective/application.rb
|
72
|
-
- lib/mcollective/
|
136
|
+
- lib/mcollective/pluginpackager.rb
|
137
|
+
- lib/mcollective/facts.rb
|
138
|
+
- lib/mcollective/aggregate.rb
|
73
139
|
- lib/mcollective/cache.rb
|
74
|
-
- lib/mcollective/
|
75
|
-
- lib/mcollective/
|
76
|
-
- lib/mcollective/
|
77
|
-
- lib/mcollective/
|
78
|
-
- lib/mcollective/
|
79
|
-
- lib/mcollective/
|
140
|
+
- lib/mcollective/exceptions.rb
|
141
|
+
- lib/mcollective/registration/agentlist.rb
|
142
|
+
- lib/mcollective/registration/base.rb
|
143
|
+
- lib/mcollective/discovery/mc.rb
|
144
|
+
- lib/mcollective/discovery/mc.ddl
|
145
|
+
- lib/mcollective/discovery/flatfile.ddl
|
146
|
+
- lib/mcollective/discovery/stdin.ddl
|
147
|
+
- lib/mcollective/discovery/stdin.rb
|
148
|
+
- lib/mcollective/discovery/flatfile.rb
|
149
|
+
- lib/mcollective/applications.rb
|
150
|
+
- lib/mcollective/generators.rb
|
151
|
+
- lib/mcollective/data/fact_data.ddl
|
152
|
+
- lib/mcollective/data/agent_data.rb
|
153
|
+
- lib/mcollective/data/collective_data.rb
|
154
|
+
- lib/mcollective/data/agent_data.ddl
|
80
155
|
- lib/mcollective/data/result.rb
|
81
|
-
- lib/mcollective/ddl
|
82
|
-
- lib/mcollective/
|
83
|
-
- lib/mcollective/
|
156
|
+
- lib/mcollective/data/collective_data.ddl
|
157
|
+
- lib/mcollective/data/fact_data.rb
|
158
|
+
- lib/mcollective/data/fstat_data.ddl
|
159
|
+
- lib/mcollective/data/fstat_data.rb
|
160
|
+
- lib/mcollective/data/base.rb
|
84
161
|
- lib/mcollective/ddl/dataddl.rb
|
85
162
|
- lib/mcollective/ddl/discoveryddl.rb
|
86
163
|
- lib/mcollective/ddl/validatorddl.rb
|
164
|
+
- lib/mcollective/ddl/agentddl.rb
|
165
|
+
- lib/mcollective/ddl/base.rb
|
166
|
+
- lib/mcollective/data.rb
|
167
|
+
- lib/mcollective/logger/file_logger.rb
|
168
|
+
- lib/mcollective/logger/console_logger.rb
|
169
|
+
- lib/mcollective/logger/syslog_logger.rb
|
170
|
+
- lib/mcollective/logger/base.rb
|
171
|
+
- lib/mcollective/registration.rb
|
87
172
|
- lib/mcollective/discovery.rb
|
88
|
-
- lib/mcollective/
|
89
|
-
- lib/mcollective/
|
90
|
-
- lib/mcollective/
|
91
|
-
- lib/mcollective/
|
173
|
+
- lib/mcollective/util.rb
|
174
|
+
- lib/mcollective/logger.rb
|
175
|
+
- lib/mcollective/pluginpackager/agent_definition.rb
|
176
|
+
- lib/mcollective/pluginpackager/templates/debian/compat.erb
|
177
|
+
- lib/mcollective/pluginpackager/templates/debian/control.erb
|
178
|
+
- lib/mcollective/pluginpackager/templates/debian/rules.erb
|
179
|
+
- lib/mcollective/pluginpackager/templates/debian/changelog.erb
|
180
|
+
- lib/mcollective/pluginpackager/templates/debian/Makefile.erb
|
181
|
+
- lib/mcollective/pluginpackager/templates/debian/copyright.erb
|
182
|
+
- lib/mcollective/pluginpackager/templates/module/README.md.erb
|
183
|
+
- lib/mcollective/pluginpackager/templates/module/_manifest.pp.erb
|
184
|
+
- lib/mcollective/pluginpackager/templates/module/Modulefile.erb
|
185
|
+
- lib/mcollective/pluginpackager/templates/redhat/rpm_spec.erb
|
186
|
+
- lib/mcollective/pluginpackager/standard_definition.rb
|
187
|
+
- lib/mcollective/pluginpackager/rpmpackage_packager.rb
|
188
|
+
- lib/mcollective/pluginpackager/debpackage_packager.rb
|
189
|
+
- lib/mcollective/pluginpackager/ospackage_packager.rb
|
190
|
+
- lib/mcollective/pluginpackager/modulepackage_packager.rb
|
191
|
+
- lib/mcollective/agent.rb
|
192
|
+
- lib/mcollective/agents.rb
|
193
|
+
- lib/mcollective/agent/discovery.rb
|
194
|
+
- lib/mcollective/agent/rpcutil.rb
|
195
|
+
- lib/mcollective/agent/rpcutil.ddl
|
196
|
+
- lib/mcollective/ddl.rb
|
197
|
+
- lib/mcollective/connector/activemq.rb
|
198
|
+
- lib/mcollective/connector/rabbitmq.rb
|
199
|
+
- lib/mcollective/connector/rabbitmq.ddl
|
200
|
+
- lib/mcollective/connector/activemq.ddl
|
201
|
+
- lib/mcollective/connector/base.rb
|
92
202
|
- lib/mcollective/generators/agent_generator.rb
|
93
|
-
- lib/mcollective/generators/base.rb
|
94
|
-
- lib/mcollective/generators/data_generator.rb
|
95
203
|
- lib/mcollective/generators/templates/action_snippet.erb
|
96
|
-
- lib/mcollective/generators/templates/data_input_snippet.erb
|
97
204
|
- lib/mcollective/generators/templates/ddl.erb
|
205
|
+
- lib/mcollective/generators/templates/data_input_snippet.erb
|
98
206
|
- lib/mcollective/generators/templates/plugin.erb
|
99
|
-
- lib/mcollective/
|
100
|
-
- lib/mcollective/
|
101
|
-
- lib/mcollective/logger/base.rb
|
102
|
-
- lib/mcollective/logger/console_logger.rb
|
103
|
-
- lib/mcollective/logger/file_logger.rb
|
104
|
-
- lib/mcollective/logger/syslog_logger.rb
|
105
|
-
- lib/mcollective/matcher.rb
|
106
|
-
- lib/mcollective/matcher/parser.rb
|
107
|
-
- lib/mcollective/matcher/scanner.rb
|
108
|
-
- lib/mcollective/message.rb
|
109
|
-
- lib/mcollective/monkey_patches.rb
|
110
|
-
- lib/mcollective/optionparser.rb
|
111
|
-
- lib/mcollective/pluginmanager.rb
|
112
|
-
- lib/mcollective/pluginpackager.rb
|
113
|
-
- lib/mcollective/pluginpackager/agent_definition.rb
|
114
|
-
- lib/mcollective/pluginpackager/standard_definition.rb
|
115
|
-
- lib/mcollective/registration.rb
|
116
|
-
- lib/mcollective/registration/base.rb
|
117
|
-
- lib/mcollective/rpc.rb
|
118
|
-
- lib/mcollective/rpc/actionrunner.rb
|
119
|
-
- lib/mcollective/rpc/agent.rb
|
120
|
-
- lib/mcollective/rpc/audit.rb
|
121
|
-
- lib/mcollective/rpc/client.rb
|
122
|
-
- lib/mcollective/rpc/helpers.rb
|
123
|
-
- lib/mcollective/rpc/progress.rb
|
124
|
-
- lib/mcollective/rpc/reply.rb
|
125
|
-
- lib/mcollective/rpc/request.rb
|
126
|
-
- lib/mcollective/rpc/result.rb
|
127
|
-
- lib/mcollective/rpc/stats.rb
|
128
|
-
- lib/mcollective/runnerstats.rb
|
129
|
-
- lib/mcollective/security.rb
|
130
|
-
- lib/mcollective/security/base.rb
|
131
|
-
- lib/mcollective/shell.rb
|
132
|
-
- lib/mcollective/ssl.rb
|
133
|
-
- lib/mcollective/unix_daemon.rb
|
134
|
-
- lib/mcollective/util.rb
|
135
|
-
- lib/mcollective/validator.rb
|
207
|
+
- lib/mcollective/generators/data_generator.rb
|
208
|
+
- lib/mcollective/generators/base.rb
|
136
209
|
- lib/mcollective/vendor.rb
|
137
|
-
- lib/mcollective/
|
138
|
-
- lib/mcollective/
|
210
|
+
- lib/mcollective/security/ssl.rb
|
211
|
+
- lib/mcollective/security/aes_security.rb
|
212
|
+
- lib/mcollective/security/psk.rb
|
213
|
+
- lib/mcollective/security/base.rb
|
214
|
+
- lib/mcollective.rb
|
139
215
|
- bin/mco
|
140
|
-
- spec/
|
141
|
-
- spec/fixtures/application/test.rb
|
142
|
-
- spec/fixtures/test-cert.pem
|
143
|
-
- spec/fixtures/test-private.pem
|
144
|
-
- spec/fixtures/test-public.pem
|
216
|
+
- spec/fixtures/util/3.out
|
145
217
|
- spec/fixtures/util/1.in
|
218
|
+
- spec/fixtures/util/4.in
|
146
219
|
- spec/fixtures/util/1.out
|
147
|
-
- spec/fixtures/util/2.in
|
148
|
-
- spec/fixtures/util/2.out
|
149
220
|
- spec/fixtures/util/3.in
|
150
|
-
- spec/fixtures/util/3.out
|
151
|
-
- spec/fixtures/util/4.in
|
152
221
|
- spec/fixtures/util/4.out
|
222
|
+
- spec/fixtures/util/2.in
|
223
|
+
- spec/fixtures/util/2.out
|
224
|
+
- spec/fixtures/application/test.rb
|
225
|
+
- spec/fixtures/test-cert.pem
|
226
|
+
- spec/fixtures/test-public.pem
|
227
|
+
- spec/fixtures/test-private.pem
|
153
228
|
- spec/monkey_patches/instance_variable_defined.rb
|
154
229
|
- spec/spec.opts
|
230
|
+
- spec/Rakefile
|
231
|
+
- spec/unit/mcollective/application_spec.rb
|
232
|
+
- spec/unit/mcollective/runnerstats_spec.rb
|
233
|
+
- spec/unit/mcollective/validator_spec.rb
|
234
|
+
- spec/unit/mcollective/rpc/agent_spec.rb
|
235
|
+
- spec/unit/mcollective/rpc/helpers_spec.rb
|
236
|
+
- spec/unit/mcollective/rpc/stats_spec.rb
|
237
|
+
- spec/unit/mcollective/rpc/actionrunner_spec.rb
|
238
|
+
- spec/unit/mcollective/rpc/request_spec.rb
|
239
|
+
- spec/unit/mcollective/rpc/result_spec.rb
|
240
|
+
- spec/unit/mcollective/rpc/client_spec.rb
|
241
|
+
- spec/unit/mcollective/rpc/reply_spec.rb
|
242
|
+
- spec/unit/mcollective/facts/base_spec.rb
|
243
|
+
- spec/unit/mcollective/facts/yaml_facts_spec.rb
|
244
|
+
- spec/unit/mcollective/vendor_spec.rb
|
245
|
+
- spec/unit/mcollective/ssl_spec.rb
|
246
|
+
- spec/unit/mcollective/application/plugin_spec.rb
|
247
|
+
- spec/unit/mcollective/validator/ipv6address_validator_spec.rb
|
248
|
+
- spec/unit/mcollective/validator/ipv4address_validator_spec.rb
|
249
|
+
- spec/unit/mcollective/validator/regex_validator_spec.rb
|
250
|
+
- spec/unit/mcollective/validator/array_validator_spec.rb
|
251
|
+
- spec/unit/mcollective/validator/length_validator_spec.rb
|
252
|
+
- spec/unit/mcollective/validator/typecheck_validator_spec.rb
|
253
|
+
- spec/unit/mcollective/validator/shellsafe_validator_spec.rb
|
254
|
+
- spec/unit/mcollective/aggregate/base_spec.rb
|
255
|
+
- spec/unit/mcollective/aggregate/average_spec.rb
|
256
|
+
- spec/unit/mcollective/aggregate/result/base_spec.rb
|
257
|
+
- spec/unit/mcollective/aggregate/result/collection_result_spec.rb
|
258
|
+
- spec/unit/mcollective/aggregate/result/numeric_result_spec.rb
|
259
|
+
- spec/unit/mcollective/aggregate/sum_spec.rb
|
260
|
+
- spec/unit/mcollective/aggregate/summary_spec.rb
|
261
|
+
- spec/unit/mcollective/matcher_spec.rb
|
262
|
+
- spec/unit/mcollective/windows_daemon_spec.rb
|
263
|
+
- spec/unit/mcollective/config_spec.rb
|
264
|
+
- spec/unit/mcollective/applications_spec.rb
|
265
|
+
- spec/unit/mcollective/cache_spec.rb
|
266
|
+
- spec/unit/mcollective/matcher/scanner_spec.rb
|
267
|
+
- spec/unit/mcollective/matcher/parser_spec.rb
|
268
|
+
- spec/unit/mcollective/audit/logfile_spec.rb
|
269
|
+
- spec/unit/mcollective/string_spec.rb
|
270
|
+
- spec/unit/mcollective/ddl_spec.rb
|
271
|
+
- spec/unit/mcollective/log_spec.rb
|
272
|
+
- spec/unit/mcollective/pluginmanager_spec.rb
|
273
|
+
- spec/unit/mcollective/registration/base_spec.rb
|
274
|
+
- spec/unit/mcollective/discovery/flatfile_spec.rb
|
275
|
+
- spec/unit/mcollective/discovery/stdin_spec.rb
|
276
|
+
- spec/unit/mcollective/discovery/mc_spec.rb
|
277
|
+
- spec/unit/mcollective/data/collective_data_spec.rb
|
278
|
+
- spec/unit/mcollective/data/base_spec.rb
|
279
|
+
- spec/unit/mcollective/data/agent_data_spec.rb
|
280
|
+
- spec/unit/mcollective/data/result_spec.rb
|
281
|
+
- spec/unit/mcollective/data/fstat_data_spec.rb
|
282
|
+
- spec/unit/mcollective/data/fact_data_spec.rb
|
283
|
+
- spec/unit/mcollective/ddl/base_spec.rb
|
284
|
+
- spec/unit/mcollective/ddl/dataddl_spec.rb
|
285
|
+
- spec/unit/mcollective/ddl/discoveryddl_spec.rb
|
286
|
+
- spec/unit/mcollective/ddl/agentddl_spec.rb
|
287
|
+
- spec/unit/mcollective/discovery_spec.rb
|
288
|
+
- spec/unit/mcollective/logger/base_spec.rb
|
289
|
+
- spec/unit/mcollective/logger/console_logger_spec.rb
|
290
|
+
- spec/unit/mcollective/logger/file_logger_spec.rb
|
291
|
+
- spec/unit/mcollective/logger/syslog_logger_spec.rb
|
292
|
+
- spec/unit/mcollective/shell_spec.rb
|
293
|
+
- spec/unit/mcollective/data_spec.rb
|
294
|
+
- spec/unit/mcollective/packagers/modulepackage_packager_spec.rb
|
295
|
+
- spec/unit/mcollective/packagers/debpackage_packager_spec.rb
|
296
|
+
- spec/unit/mcollective/packagers/ospackage_spec.rb
|
297
|
+
- spec/unit/mcollective/packagers/rpmpackage_packager_spec.rb
|
298
|
+
- spec/unit/mcollective/client_spec.rb
|
299
|
+
- spec/unit/mcollective/pluginpackager/standard_definition_spec.rb
|
300
|
+
- spec/unit/mcollective/pluginpackager/agent_definition_spec.rb
|
301
|
+
- spec/unit/mcollective/agent/rpcutil_spec.rb
|
302
|
+
- spec/unit/mcollective/aggregate_spec.rb
|
303
|
+
- spec/unit/mcollective/array_spec.rb
|
304
|
+
- spec/unit/mcollective/optionparser_spec.rb
|
305
|
+
- spec/unit/mcollective/message_spec.rb
|
306
|
+
- spec/unit/mcollective/pluginpackager_spec.rb
|
307
|
+
- spec/unit/mcollective/connector/rabbitmq_spec.rb
|
308
|
+
- spec/unit/mcollective/connector/base_spec.rb
|
309
|
+
- spec/unit/mcollective/connector/activemq_spec.rb
|
310
|
+
- spec/unit/mcollective/generators/snippets/data_ddl
|
311
|
+
- spec/unit/mcollective/generators/snippets/agent_ddl
|
312
|
+
- spec/unit/mcollective/generators/base_spec.rb
|
313
|
+
- spec/unit/mcollective/generators/data_generator_spec.rb
|
314
|
+
- spec/unit/mcollective/generators/agent_generator_spec.rb
|
315
|
+
- spec/unit/mcollective/runner_spec.rb
|
316
|
+
- spec/unit/mcollective/util_spec.rb
|
317
|
+
- spec/unit/mcollective/agents_spec.rb
|
318
|
+
- spec/unit/mcollective/monkey_patches_spec.rb
|
319
|
+
- spec/unit/mcollective/unix_daemon_spec.rb
|
320
|
+
- spec/unit/mcollective/rpc_spec.rb
|
321
|
+
- spec/unit/mcollective/facts_spec.rb
|
322
|
+
- spec/unit/mcollective/symbol_spec.rb
|
323
|
+
- spec/unit/mcollective/security/aes_security_spec.rb
|
324
|
+
- spec/unit/mcollective/security/base_spec.rb
|
325
|
+
- spec/unit/mcollective/security/psk_spec.rb
|
155
326
|
- spec/spec_helper.rb
|
156
|
-
- spec/unit/agents_spec.rb
|
157
|
-
- spec/unit/aggregate/base_spec.rb
|
158
|
-
- spec/unit/aggregate/result/base_spec.rb
|
159
|
-
- spec/unit/aggregate/result/collection_result_spec.rb
|
160
|
-
- spec/unit/aggregate/result/numeric_result_spec.rb
|
161
|
-
- spec/unit/aggregate_spec.rb
|
162
|
-
- spec/unit/application_spec.rb
|
163
|
-
- spec/unit/applications_spec.rb
|
164
|
-
- spec/unit/array_spec.rb
|
165
|
-
- spec/unit/cache_spec.rb
|
166
|
-
- spec/unit/client_spec.rb
|
167
|
-
- spec/unit/config_spec.rb
|
168
|
-
- spec/unit/connector/base_spec.rb
|
169
|
-
- spec/unit/data/base_spec.rb
|
170
|
-
- spec/unit/data/result_spec.rb
|
171
|
-
- spec/unit/data_spec.rb
|
172
|
-
- spec/unit/ddl/agentddl_spec.rb
|
173
|
-
- spec/unit/ddl/base_spec.rb
|
174
|
-
- spec/unit/ddl/dataddl_spec.rb
|
175
|
-
- spec/unit/ddl/discoveryddl_spec.rb
|
176
|
-
- spec/unit/ddl_spec.rb
|
177
|
-
- spec/unit/discovery_spec.rb
|
178
|
-
- spec/unit/facts/base_spec.rb
|
179
|
-
- spec/unit/facts_spec.rb
|
180
|
-
- spec/unit/generators/agent_generator_spec.rb
|
181
|
-
- spec/unit/generators/base_spec.rb
|
182
|
-
- spec/unit/generators/data_generator_spec.rb
|
183
|
-
- spec/unit/generators/snippets/agent_ddl
|
184
|
-
- spec/unit/generators/snippets/data_ddl
|
185
|
-
- spec/unit/log_spec.rb
|
186
|
-
- spec/unit/logger/base_spec.rb
|
187
|
-
- spec/unit/logger/console_logger_spec.rb
|
188
|
-
- spec/unit/logger/file_logger_spec.rb
|
189
|
-
- spec/unit/logger/syslog_logger_spec.rb
|
190
|
-
- spec/unit/matcher/parser_spec.rb
|
191
|
-
- spec/unit/matcher/scanner_spec.rb
|
192
|
-
- spec/unit/matcher_spec.rb
|
193
|
-
- spec/unit/message_spec.rb
|
194
|
-
- spec/unit/monkey_patches_spec.rb
|
195
|
-
- spec/unit/optionparser_spec.rb
|
196
|
-
- spec/unit/pluginmanager_spec.rb
|
197
|
-
- spec/unit/pluginpackager/agent_definition_spec.rb
|
198
|
-
- spec/unit/pluginpackager/standard_definition_spec.rb
|
199
|
-
- spec/unit/pluginpackager_spec.rb
|
200
|
-
- spec/unit/plugins/mcollective/agent/rpcutil_spec.rb
|
201
|
-
- spec/unit/plugins/mcollective/aggregate/average_spec.rb
|
202
|
-
- spec/unit/plugins/mcollective/aggregate/sum_spec.rb
|
203
|
-
- spec/unit/plugins/mcollective/aggregate/summary_spec.rb
|
204
|
-
- spec/unit/plugins/mcollective/application/plugin_spec.rb
|
205
|
-
- spec/unit/plugins/mcollective/audit/logfile_spec.rb
|
206
|
-
- spec/unit/plugins/mcollective/connector/activemq_spec.rb
|
207
|
-
- spec/unit/plugins/mcollective/connector/rabbitmq_spec.rb
|
208
|
-
- spec/unit/plugins/mcollective/data/agent_data_spec.rb
|
209
|
-
- spec/unit/plugins/mcollective/data/collective_data_spec.rb
|
210
|
-
- spec/unit/plugins/mcollective/data/fact_data_spec.rb
|
211
|
-
- spec/unit/plugins/mcollective/data/fstat_data_spec.rb
|
212
|
-
- spec/unit/plugins/mcollective/discovery/flatfile_spec.rb
|
213
|
-
- spec/unit/plugins/mcollective/discovery/mc_spec.rb
|
214
|
-
- spec/unit/plugins/mcollective/discovery/stdin_spec.rb
|
215
|
-
- spec/unit/plugins/mcollective/facts/yaml_facts_spec.rb
|
216
|
-
- spec/unit/plugins/mcollective/packagers/debpackage_packager_spec.rb
|
217
|
-
- spec/unit/plugins/mcollective/packagers/modulepackage_packager_spec.rb
|
218
|
-
- spec/unit/plugins/mcollective/packagers/ospackage_spec.rb
|
219
|
-
- spec/unit/plugins/mcollective/packagers/rpmpackage_packager_spec.rb
|
220
|
-
- spec/unit/plugins/mcollective/security/aes_security_spec.rb
|
221
|
-
- spec/unit/plugins/mcollective/security/psk_spec.rb
|
222
|
-
- spec/unit/plugins/mcollective/validator/array_validator_spec.rb
|
223
|
-
- spec/unit/plugins/mcollective/validator/ipv4address_validator_spec.rb
|
224
|
-
- spec/unit/plugins/mcollective/validator/ipv6address_validator_spec.rb
|
225
|
-
- spec/unit/plugins/mcollective/validator/length_validator_spec.rb
|
226
|
-
- spec/unit/plugins/mcollective/validator/regex_validator_spec.rb
|
227
|
-
- spec/unit/plugins/mcollective/validator/shellsafe_validator_spec.rb
|
228
|
-
- spec/unit/plugins/mcollective/validator/typecheck_validator_spec.rb
|
229
|
-
- spec/unit/registration/base_spec.rb
|
230
|
-
- spec/unit/rpc/actionrunner_spec.rb
|
231
|
-
- spec/unit/rpc/agent_spec.rb
|
232
|
-
- spec/unit/rpc/client_spec.rb
|
233
|
-
- spec/unit/rpc/helpers_spec.rb
|
234
|
-
- spec/unit/rpc/reply_spec.rb
|
235
|
-
- spec/unit/rpc/request_spec.rb
|
236
|
-
- spec/unit/rpc/result_spec.rb
|
237
|
-
- spec/unit/rpc/stats_spec.rb
|
238
|
-
- spec/unit/rpc_spec.rb
|
239
|
-
- spec/unit/runner_spec.rb
|
240
|
-
- spec/unit/runnerstats_spec.rb
|
241
|
-
- spec/unit/security/base_spec.rb
|
242
|
-
- spec/unit/shell_spec.rb
|
243
|
-
- spec/unit/ssl_spec.rb
|
244
|
-
- spec/unit/string_spec.rb
|
245
|
-
- spec/unit/symbol_spec.rb
|
246
|
-
- spec/unit/unix_daemon_spec.rb
|
247
|
-
- spec/unit/util_spec.rb
|
248
|
-
- spec/unit/validator_spec.rb
|
249
|
-
- spec/unit/vendor_spec.rb
|
250
|
-
- spec/unit/windows_daemon_spec.rb
|
251
327
|
- spec/windows_spec.opts
|
252
328
|
homepage: https://docs.puppetlabs.com/mcollective/
|
253
329
|
licenses: []
|
254
|
-
metadata: {}
|
255
330
|
post_install_message:
|
256
331
|
rdoc_options:
|
257
332
|
- --line-numbers
|
@@ -270,131 +345,133 @@ rdoc_options:
|
|
270
345
|
require_paths:
|
271
346
|
- lib
|
272
347
|
required_ruby_version: !ruby/object:Gem::Requirement
|
348
|
+
none: false
|
273
349
|
requirements:
|
274
|
-
- - '>='
|
350
|
+
- - ! '>='
|
275
351
|
- !ruby/object:Gem::Version
|
276
352
|
version: '0'
|
277
353
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
354
|
+
none: false
|
278
355
|
requirements:
|
279
|
-
- - '>='
|
356
|
+
- - ! '>='
|
280
357
|
- !ruby/object:Gem::Version
|
281
358
|
version: '0'
|
282
359
|
requirements: []
|
283
360
|
rubyforge_project:
|
284
|
-
rubygems_version:
|
361
|
+
rubygems_version: 1.8.23
|
285
362
|
signing_key:
|
286
|
-
specification_version:
|
363
|
+
specification_version: 3
|
287
364
|
summary: Client libraries for the Mcollective Application Server
|
288
365
|
test_files:
|
289
|
-
- spec/
|
290
|
-
- spec/fixtures/application/test.rb
|
291
|
-
- spec/fixtures/test-cert.pem
|
292
|
-
- spec/fixtures/test-private.pem
|
293
|
-
- spec/fixtures/test-public.pem
|
366
|
+
- spec/fixtures/util/3.out
|
294
367
|
- spec/fixtures/util/1.in
|
368
|
+
- spec/fixtures/util/4.in
|
295
369
|
- spec/fixtures/util/1.out
|
296
|
-
- spec/fixtures/util/2.in
|
297
|
-
- spec/fixtures/util/2.out
|
298
370
|
- spec/fixtures/util/3.in
|
299
|
-
- spec/fixtures/util/3.out
|
300
|
-
- spec/fixtures/util/4.in
|
301
371
|
- spec/fixtures/util/4.out
|
372
|
+
- spec/fixtures/util/2.in
|
373
|
+
- spec/fixtures/util/2.out
|
374
|
+
- spec/fixtures/application/test.rb
|
375
|
+
- spec/fixtures/test-cert.pem
|
376
|
+
- spec/fixtures/test-public.pem
|
377
|
+
- spec/fixtures/test-private.pem
|
302
378
|
- spec/monkey_patches/instance_variable_defined.rb
|
303
379
|
- spec/spec.opts
|
380
|
+
- spec/Rakefile
|
381
|
+
- spec/unit/mcollective/application_spec.rb
|
382
|
+
- spec/unit/mcollective/runnerstats_spec.rb
|
383
|
+
- spec/unit/mcollective/validator_spec.rb
|
384
|
+
- spec/unit/mcollective/rpc/agent_spec.rb
|
385
|
+
- spec/unit/mcollective/rpc/helpers_spec.rb
|
386
|
+
- spec/unit/mcollective/rpc/stats_spec.rb
|
387
|
+
- spec/unit/mcollective/rpc/actionrunner_spec.rb
|
388
|
+
- spec/unit/mcollective/rpc/request_spec.rb
|
389
|
+
- spec/unit/mcollective/rpc/result_spec.rb
|
390
|
+
- spec/unit/mcollective/rpc/client_spec.rb
|
391
|
+
- spec/unit/mcollective/rpc/reply_spec.rb
|
392
|
+
- spec/unit/mcollective/facts/base_spec.rb
|
393
|
+
- spec/unit/mcollective/facts/yaml_facts_spec.rb
|
394
|
+
- spec/unit/mcollective/vendor_spec.rb
|
395
|
+
- spec/unit/mcollective/ssl_spec.rb
|
396
|
+
- spec/unit/mcollective/application/plugin_spec.rb
|
397
|
+
- spec/unit/mcollective/validator/ipv6address_validator_spec.rb
|
398
|
+
- spec/unit/mcollective/validator/ipv4address_validator_spec.rb
|
399
|
+
- spec/unit/mcollective/validator/regex_validator_spec.rb
|
400
|
+
- spec/unit/mcollective/validator/array_validator_spec.rb
|
401
|
+
- spec/unit/mcollective/validator/length_validator_spec.rb
|
402
|
+
- spec/unit/mcollective/validator/typecheck_validator_spec.rb
|
403
|
+
- spec/unit/mcollective/validator/shellsafe_validator_spec.rb
|
404
|
+
- spec/unit/mcollective/aggregate/base_spec.rb
|
405
|
+
- spec/unit/mcollective/aggregate/average_spec.rb
|
406
|
+
- spec/unit/mcollective/aggregate/result/base_spec.rb
|
407
|
+
- spec/unit/mcollective/aggregate/result/collection_result_spec.rb
|
408
|
+
- spec/unit/mcollective/aggregate/result/numeric_result_spec.rb
|
409
|
+
- spec/unit/mcollective/aggregate/sum_spec.rb
|
410
|
+
- spec/unit/mcollective/aggregate/summary_spec.rb
|
411
|
+
- spec/unit/mcollective/matcher_spec.rb
|
412
|
+
- spec/unit/mcollective/windows_daemon_spec.rb
|
413
|
+
- spec/unit/mcollective/config_spec.rb
|
414
|
+
- spec/unit/mcollective/applications_spec.rb
|
415
|
+
- spec/unit/mcollective/cache_spec.rb
|
416
|
+
- spec/unit/mcollective/matcher/scanner_spec.rb
|
417
|
+
- spec/unit/mcollective/matcher/parser_spec.rb
|
418
|
+
- spec/unit/mcollective/audit/logfile_spec.rb
|
419
|
+
- spec/unit/mcollective/string_spec.rb
|
420
|
+
- spec/unit/mcollective/ddl_spec.rb
|
421
|
+
- spec/unit/mcollective/log_spec.rb
|
422
|
+
- spec/unit/mcollective/pluginmanager_spec.rb
|
423
|
+
- spec/unit/mcollective/registration/base_spec.rb
|
424
|
+
- spec/unit/mcollective/discovery/flatfile_spec.rb
|
425
|
+
- spec/unit/mcollective/discovery/stdin_spec.rb
|
426
|
+
- spec/unit/mcollective/discovery/mc_spec.rb
|
427
|
+
- spec/unit/mcollective/data/collective_data_spec.rb
|
428
|
+
- spec/unit/mcollective/data/base_spec.rb
|
429
|
+
- spec/unit/mcollective/data/agent_data_spec.rb
|
430
|
+
- spec/unit/mcollective/data/result_spec.rb
|
431
|
+
- spec/unit/mcollective/data/fstat_data_spec.rb
|
432
|
+
- spec/unit/mcollective/data/fact_data_spec.rb
|
433
|
+
- spec/unit/mcollective/ddl/base_spec.rb
|
434
|
+
- spec/unit/mcollective/ddl/dataddl_spec.rb
|
435
|
+
- spec/unit/mcollective/ddl/discoveryddl_spec.rb
|
436
|
+
- spec/unit/mcollective/ddl/agentddl_spec.rb
|
437
|
+
- spec/unit/mcollective/discovery_spec.rb
|
438
|
+
- spec/unit/mcollective/logger/base_spec.rb
|
439
|
+
- spec/unit/mcollective/logger/console_logger_spec.rb
|
440
|
+
- spec/unit/mcollective/logger/file_logger_spec.rb
|
441
|
+
- spec/unit/mcollective/logger/syslog_logger_spec.rb
|
442
|
+
- spec/unit/mcollective/shell_spec.rb
|
443
|
+
- spec/unit/mcollective/data_spec.rb
|
444
|
+
- spec/unit/mcollective/packagers/modulepackage_packager_spec.rb
|
445
|
+
- spec/unit/mcollective/packagers/debpackage_packager_spec.rb
|
446
|
+
- spec/unit/mcollective/packagers/ospackage_spec.rb
|
447
|
+
- spec/unit/mcollective/packagers/rpmpackage_packager_spec.rb
|
448
|
+
- spec/unit/mcollective/client_spec.rb
|
449
|
+
- spec/unit/mcollective/pluginpackager/standard_definition_spec.rb
|
450
|
+
- spec/unit/mcollective/pluginpackager/agent_definition_spec.rb
|
451
|
+
- spec/unit/mcollective/agent/rpcutil_spec.rb
|
452
|
+
- spec/unit/mcollective/aggregate_spec.rb
|
453
|
+
- spec/unit/mcollective/array_spec.rb
|
454
|
+
- spec/unit/mcollective/optionparser_spec.rb
|
455
|
+
- spec/unit/mcollective/message_spec.rb
|
456
|
+
- spec/unit/mcollective/pluginpackager_spec.rb
|
457
|
+
- spec/unit/mcollective/connector/rabbitmq_spec.rb
|
458
|
+
- spec/unit/mcollective/connector/base_spec.rb
|
459
|
+
- spec/unit/mcollective/connector/activemq_spec.rb
|
460
|
+
- spec/unit/mcollective/generators/snippets/data_ddl
|
461
|
+
- spec/unit/mcollective/generators/snippets/agent_ddl
|
462
|
+
- spec/unit/mcollective/generators/base_spec.rb
|
463
|
+
- spec/unit/mcollective/generators/data_generator_spec.rb
|
464
|
+
- spec/unit/mcollective/generators/agent_generator_spec.rb
|
465
|
+
- spec/unit/mcollective/runner_spec.rb
|
466
|
+
- spec/unit/mcollective/util_spec.rb
|
467
|
+
- spec/unit/mcollective/agents_spec.rb
|
468
|
+
- spec/unit/mcollective/monkey_patches_spec.rb
|
469
|
+
- spec/unit/mcollective/unix_daemon_spec.rb
|
470
|
+
- spec/unit/mcollective/rpc_spec.rb
|
471
|
+
- spec/unit/mcollective/facts_spec.rb
|
472
|
+
- spec/unit/mcollective/symbol_spec.rb
|
473
|
+
- spec/unit/mcollective/security/aes_security_spec.rb
|
474
|
+
- spec/unit/mcollective/security/base_spec.rb
|
475
|
+
- spec/unit/mcollective/security/psk_spec.rb
|
304
476
|
- spec/spec_helper.rb
|
305
|
-
- spec/unit/agents_spec.rb
|
306
|
-
- spec/unit/aggregate/base_spec.rb
|
307
|
-
- spec/unit/aggregate/result/base_spec.rb
|
308
|
-
- spec/unit/aggregate/result/collection_result_spec.rb
|
309
|
-
- spec/unit/aggregate/result/numeric_result_spec.rb
|
310
|
-
- spec/unit/aggregate_spec.rb
|
311
|
-
- spec/unit/application_spec.rb
|
312
|
-
- spec/unit/applications_spec.rb
|
313
|
-
- spec/unit/array_spec.rb
|
314
|
-
- spec/unit/cache_spec.rb
|
315
|
-
- spec/unit/client_spec.rb
|
316
|
-
- spec/unit/config_spec.rb
|
317
|
-
- spec/unit/connector/base_spec.rb
|
318
|
-
- spec/unit/data/base_spec.rb
|
319
|
-
- spec/unit/data/result_spec.rb
|
320
|
-
- spec/unit/data_spec.rb
|
321
|
-
- spec/unit/ddl/agentddl_spec.rb
|
322
|
-
- spec/unit/ddl/base_spec.rb
|
323
|
-
- spec/unit/ddl/dataddl_spec.rb
|
324
|
-
- spec/unit/ddl/discoveryddl_spec.rb
|
325
|
-
- spec/unit/ddl_spec.rb
|
326
|
-
- spec/unit/discovery_spec.rb
|
327
|
-
- spec/unit/facts/base_spec.rb
|
328
|
-
- spec/unit/facts_spec.rb
|
329
|
-
- spec/unit/generators/agent_generator_spec.rb
|
330
|
-
- spec/unit/generators/base_spec.rb
|
331
|
-
- spec/unit/generators/data_generator_spec.rb
|
332
|
-
- spec/unit/generators/snippets/agent_ddl
|
333
|
-
- spec/unit/generators/snippets/data_ddl
|
334
|
-
- spec/unit/log_spec.rb
|
335
|
-
- spec/unit/logger/base_spec.rb
|
336
|
-
- spec/unit/logger/console_logger_spec.rb
|
337
|
-
- spec/unit/logger/file_logger_spec.rb
|
338
|
-
- spec/unit/logger/syslog_logger_spec.rb
|
339
|
-
- spec/unit/matcher/parser_spec.rb
|
340
|
-
- spec/unit/matcher/scanner_spec.rb
|
341
|
-
- spec/unit/matcher_spec.rb
|
342
|
-
- spec/unit/message_spec.rb
|
343
|
-
- spec/unit/monkey_patches_spec.rb
|
344
|
-
- spec/unit/optionparser_spec.rb
|
345
|
-
- spec/unit/pluginmanager_spec.rb
|
346
|
-
- spec/unit/pluginpackager/agent_definition_spec.rb
|
347
|
-
- spec/unit/pluginpackager/standard_definition_spec.rb
|
348
|
-
- spec/unit/pluginpackager_spec.rb
|
349
|
-
- spec/unit/plugins/mcollective/agent/rpcutil_spec.rb
|
350
|
-
- spec/unit/plugins/mcollective/aggregate/average_spec.rb
|
351
|
-
- spec/unit/plugins/mcollective/aggregate/sum_spec.rb
|
352
|
-
- spec/unit/plugins/mcollective/aggregate/summary_spec.rb
|
353
|
-
- spec/unit/plugins/mcollective/application/plugin_spec.rb
|
354
|
-
- spec/unit/plugins/mcollective/audit/logfile_spec.rb
|
355
|
-
- spec/unit/plugins/mcollective/connector/activemq_spec.rb
|
356
|
-
- spec/unit/plugins/mcollective/connector/rabbitmq_spec.rb
|
357
|
-
- spec/unit/plugins/mcollective/data/agent_data_spec.rb
|
358
|
-
- spec/unit/plugins/mcollective/data/collective_data_spec.rb
|
359
|
-
- spec/unit/plugins/mcollective/data/fact_data_spec.rb
|
360
|
-
- spec/unit/plugins/mcollective/data/fstat_data_spec.rb
|
361
|
-
- spec/unit/plugins/mcollective/discovery/flatfile_spec.rb
|
362
|
-
- spec/unit/plugins/mcollective/discovery/mc_spec.rb
|
363
|
-
- spec/unit/plugins/mcollective/discovery/stdin_spec.rb
|
364
|
-
- spec/unit/plugins/mcollective/facts/yaml_facts_spec.rb
|
365
|
-
- spec/unit/plugins/mcollective/packagers/debpackage_packager_spec.rb
|
366
|
-
- spec/unit/plugins/mcollective/packagers/modulepackage_packager_spec.rb
|
367
|
-
- spec/unit/plugins/mcollective/packagers/ospackage_spec.rb
|
368
|
-
- spec/unit/plugins/mcollective/packagers/rpmpackage_packager_spec.rb
|
369
|
-
- spec/unit/plugins/mcollective/security/aes_security_spec.rb
|
370
|
-
- spec/unit/plugins/mcollective/security/psk_spec.rb
|
371
|
-
- spec/unit/plugins/mcollective/validator/array_validator_spec.rb
|
372
|
-
- spec/unit/plugins/mcollective/validator/ipv4address_validator_spec.rb
|
373
|
-
- spec/unit/plugins/mcollective/validator/ipv6address_validator_spec.rb
|
374
|
-
- spec/unit/plugins/mcollective/validator/length_validator_spec.rb
|
375
|
-
- spec/unit/plugins/mcollective/validator/regex_validator_spec.rb
|
376
|
-
- spec/unit/plugins/mcollective/validator/shellsafe_validator_spec.rb
|
377
|
-
- spec/unit/plugins/mcollective/validator/typecheck_validator_spec.rb
|
378
|
-
- spec/unit/registration/base_spec.rb
|
379
|
-
- spec/unit/rpc/actionrunner_spec.rb
|
380
|
-
- spec/unit/rpc/agent_spec.rb
|
381
|
-
- spec/unit/rpc/client_spec.rb
|
382
|
-
- spec/unit/rpc/helpers_spec.rb
|
383
|
-
- spec/unit/rpc/reply_spec.rb
|
384
|
-
- spec/unit/rpc/request_spec.rb
|
385
|
-
- spec/unit/rpc/result_spec.rb
|
386
|
-
- spec/unit/rpc/stats_spec.rb
|
387
|
-
- spec/unit/rpc_spec.rb
|
388
|
-
- spec/unit/runner_spec.rb
|
389
|
-
- spec/unit/runnerstats_spec.rb
|
390
|
-
- spec/unit/security/base_spec.rb
|
391
|
-
- spec/unit/shell_spec.rb
|
392
|
-
- spec/unit/ssl_spec.rb
|
393
|
-
- spec/unit/string_spec.rb
|
394
|
-
- spec/unit/symbol_spec.rb
|
395
|
-
- spec/unit/unix_daemon_spec.rb
|
396
|
-
- spec/unit/util_spec.rb
|
397
|
-
- spec/unit/validator_spec.rb
|
398
|
-
- spec/unit/vendor_spec.rb
|
399
|
-
- spec/unit/windows_daemon_spec.rb
|
400
477
|
- spec/windows_spec.opts
|