mcollective-client 2.10.1 → 2.10.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/mcollective.rb +1 -1
- data/spec/unit/mcollective/log_spec.rb +1 -0
- data/spec/unit/mcollective/security/psk_spec.rb +5 -0
- metadata +213 -205
- checksums.yaml +0 -15
data/lib/mcollective.rb
CHANGED
@@ -37,6 +37,7 @@ module MCollective
|
|
37
37
|
|
38
38
|
describe "#log" do
|
39
39
|
it "should log at the right levels" do
|
40
|
+
Log.configure(@logger)
|
40
41
|
[:debug, :info, :fatal, :error, :warn].each do |level|
|
41
42
|
@logger.expects(:log).with(level, anything, regexp_matches(/#{level} test/))
|
42
43
|
Log.send(level, "#{level} test")
|
metadata
CHANGED
@@ -1,18 +1,20 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mcollective-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.10.
|
4
|
+
version: 2.10.2
|
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: 2017-
|
12
|
+
date: 2017-03-09 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
|
@@ -20,6 +22,7 @@ dependencies:
|
|
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
|
@@ -27,6 +30,7 @@ dependencies:
|
|
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
|
@@ -34,6 +38,7 @@ dependencies:
|
|
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
|
@@ -41,6 +46,7 @@ dependencies:
|
|
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
|
@@ -48,6 +54,7 @@ dependencies:
|
|
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
|
@@ -59,269 +66,268 @@ executables:
|
|
59
66
|
extensions: []
|
60
67
|
extra_rdoc_files: []
|
61
68
|
files:
|
62
|
-
-
|
63
|
-
- lib/mcollective.rb
|
64
|
-
- lib/mcollective/
|
65
|
-
- lib/mcollective/
|
66
|
-
- lib/mcollective/
|
67
|
-
- lib/mcollective/
|
68
|
-
- lib/mcollective/
|
69
|
-
- lib/mcollective/
|
70
|
-
- lib/mcollective/
|
71
|
-
- lib/mcollective/
|
72
|
-
- lib/mcollective/
|
73
|
-
- lib/mcollective/
|
74
|
-
- lib/mcollective/
|
75
|
-
- lib/mcollective/
|
76
|
-
- lib/mcollective/
|
77
|
-
- lib/mcollective/
|
78
|
-
- lib/mcollective/
|
79
|
-
- lib/mcollective/
|
80
|
-
- lib/mcollective/
|
81
|
-
- 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
|
82
93
|
- lib/mcollective/application/completion.rb
|
83
94
|
- lib/mcollective/application/describe_filter.rb
|
84
95
|
- lib/mcollective/application/facts.rb
|
85
|
-
- lib/mcollective/application/find.rb
|
86
96
|
- lib/mcollective/application/help.rb
|
87
97
|
- lib/mcollective/application/inventory.rb
|
88
|
-
- lib/mcollective/application/
|
89
|
-
- lib/mcollective/
|
90
|
-
- lib/mcollective/
|
91
|
-
- lib/mcollective/
|
98
|
+
- lib/mcollective/application/find.rb
|
99
|
+
- lib/mcollective/validator/regex_validator.ddl
|
100
|
+
- lib/mcollective/validator/typecheck_validator.ddl
|
101
|
+
- lib/mcollective/validator/shellsafe_validator.ddl
|
102
|
+
- lib/mcollective/validator/ipv6address_validator.ddl
|
103
|
+
- lib/mcollective/validator/length_validator.ddl
|
104
|
+
- lib/mcollective/validator/shellsafe_validator.rb
|
105
|
+
- lib/mcollective/validator/ipv4address_validator.ddl
|
106
|
+
- lib/mcollective/validator/ipv4address_validator.rb
|
107
|
+
- lib/mcollective/validator/array_validator.ddl
|
108
|
+
- lib/mcollective/validator/length_validator.rb
|
109
|
+
- lib/mcollective/validator/regex_validator.rb
|
110
|
+
- lib/mcollective/validator/ipv6address_validator.rb
|
111
|
+
- lib/mcollective/validator/array_validator.rb
|
112
|
+
- lib/mcollective/validator/typecheck_validator.rb
|
113
|
+
- lib/mcollective/windows_daemon.rb
|
114
|
+
- lib/mcollective/aggregate/sum.ddl
|
115
|
+
- lib/mcollective/aggregate/average.ddl
|
116
|
+
- lib/mcollective/aggregate/summary.ddl
|
117
|
+
- lib/mcollective/aggregate/result/collection_result.rb
|
118
|
+
- lib/mcollective/aggregate/result/numeric_result.rb
|
119
|
+
- lib/mcollective/aggregate/result/base.rb
|
120
|
+
- lib/mcollective/aggregate/sum.rb
|
121
|
+
- lib/mcollective/aggregate/result.rb
|
122
|
+
- lib/mcollective/aggregate/average.rb
|
123
|
+
- lib/mcollective/aggregate/summary.rb
|
124
|
+
- lib/mcollective/aggregate/base.rb
|
125
|
+
- lib/mcollective/optionparser.rb
|
126
|
+
- lib/mcollective/ssl.rb
|
127
|
+
- lib/mcollective/runnerstats.rb
|
128
|
+
- lib/mcollective/shell.rb
|
129
|
+
- lib/mcollective/validator.rb
|
130
|
+
- lib/mcollective/vendor/require_vendored.rb
|
131
|
+
- lib/mcollective/matcher/parser.rb
|
132
|
+
- lib/mcollective/matcher/scanner.rb
|
92
133
|
- lib/mcollective/audit/logfile.rb
|
93
|
-
- lib/mcollective/cache.rb
|
94
|
-
- lib/mcollective/client.rb
|
95
134
|
- lib/mcollective/config.rb
|
96
|
-
- lib/mcollective/
|
97
|
-
- lib/mcollective/
|
98
|
-
- lib/mcollective/
|
99
|
-
- lib/mcollective/
|
100
|
-
- lib/mcollective/
|
101
|
-
- lib/mcollective/
|
102
|
-
- lib/mcollective/
|
103
|
-
- lib/mcollective/
|
135
|
+
- lib/mcollective/message.rb
|
136
|
+
- lib/mcollective/application.rb
|
137
|
+
- lib/mcollective/pluginpackager.rb
|
138
|
+
- lib/mcollective/facts.rb
|
139
|
+
- lib/mcollective/aggregate.rb
|
140
|
+
- lib/mcollective/cache.rb
|
141
|
+
- lib/mcollective/exceptions.rb
|
142
|
+
- lib/mcollective/registration/agentlist.rb
|
143
|
+
- lib/mcollective/registration/base.rb
|
144
|
+
- lib/mcollective/discovery/mc.rb
|
145
|
+
- lib/mcollective/discovery/mc.ddl
|
146
|
+
- lib/mcollective/discovery/flatfile.ddl
|
147
|
+
- lib/mcollective/discovery/stdin.ddl
|
148
|
+
- lib/mcollective/discovery/stdin.rb
|
149
|
+
- lib/mcollective/discovery/flatfile.rb
|
150
|
+
- lib/mcollective/applications.rb
|
151
|
+
- lib/mcollective/generators.rb
|
152
|
+
- lib/mcollective/data/fact_data.ddl
|
104
153
|
- lib/mcollective/data/agent_data.rb
|
105
|
-
- lib/mcollective/data/base.rb
|
106
|
-
- lib/mcollective/data/collective_data.ddl
|
107
154
|
- lib/mcollective/data/collective_data.rb
|
108
|
-
- lib/mcollective/data/
|
155
|
+
- lib/mcollective/data/agent_data.ddl
|
156
|
+
- lib/mcollective/data/result.rb
|
157
|
+
- lib/mcollective/data/collective_data.ddl
|
109
158
|
- lib/mcollective/data/fact_data.rb
|
110
159
|
- lib/mcollective/data/fstat_data.ddl
|
111
160
|
- lib/mcollective/data/fstat_data.rb
|
112
|
-
- lib/mcollective/data/
|
113
|
-
- lib/mcollective/ddl.rb
|
114
|
-
- lib/mcollective/ddl/agentddl.rb
|
115
|
-
- lib/mcollective/ddl/base.rb
|
161
|
+
- lib/mcollective/data/base.rb
|
116
162
|
- lib/mcollective/ddl/dataddl.rb
|
117
163
|
- lib/mcollective/ddl/discoveryddl.rb
|
118
164
|
- lib/mcollective/ddl/validatorddl.rb
|
119
|
-
- lib/mcollective/
|
120
|
-
- lib/mcollective/
|
121
|
-
- lib/mcollective/
|
122
|
-
- lib/mcollective/discovery/mc.ddl
|
123
|
-
- lib/mcollective/discovery/mc.rb
|
124
|
-
- lib/mcollective/discovery/stdin.ddl
|
125
|
-
- lib/mcollective/discovery/stdin.rb
|
126
|
-
- lib/mcollective/exceptions.rb
|
127
|
-
- lib/mcollective/facts.rb
|
128
|
-
- lib/mcollective/facts/base.rb
|
129
|
-
- lib/mcollective/facts/yaml_facts.rb
|
130
|
-
- lib/mcollective/generators.rb
|
131
|
-
- lib/mcollective/generators/agent_generator.rb
|
132
|
-
- lib/mcollective/generators/base.rb
|
133
|
-
- lib/mcollective/generators/data_generator.rb
|
134
|
-
- lib/mcollective/generators/templates/action_snippet.erb
|
135
|
-
- lib/mcollective/generators/templates/data_input_snippet.erb
|
136
|
-
- lib/mcollective/generators/templates/ddl.erb
|
137
|
-
- lib/mcollective/generators/templates/plugin.erb
|
138
|
-
- lib/mcollective/log.rb
|
139
|
-
- lib/mcollective/logger.rb
|
140
|
-
- lib/mcollective/logger/base.rb
|
141
|
-
- lib/mcollective/logger/console_logger.rb
|
165
|
+
- lib/mcollective/ddl/agentddl.rb
|
166
|
+
- lib/mcollective/ddl/base.rb
|
167
|
+
- lib/mcollective/data.rb
|
142
168
|
- lib/mcollective/logger/file_logger.rb
|
169
|
+
- lib/mcollective/logger/console_logger.rb
|
143
170
|
- lib/mcollective/logger/syslog_logger.rb
|
144
|
-
- lib/mcollective/
|
145
|
-
- lib/mcollective/
|
146
|
-
- lib/mcollective/
|
147
|
-
- lib/mcollective/
|
148
|
-
- lib/mcollective/
|
149
|
-
- lib/mcollective/optionparser.rb
|
150
|
-
- lib/mcollective/pluginmanager.rb
|
151
|
-
- lib/mcollective/pluginpackager.rb
|
171
|
+
- lib/mcollective/logger/base.rb
|
172
|
+
- lib/mcollective/registration.rb
|
173
|
+
- lib/mcollective/discovery.rb
|
174
|
+
- lib/mcollective/util.rb
|
175
|
+
- lib/mcollective/logger.rb
|
152
176
|
- lib/mcollective/pluginpackager/agent_definition.rb
|
153
|
-
- lib/mcollective/pluginpackager/debpackage_packager.rb
|
154
|
-
- lib/mcollective/pluginpackager/modulepackage_packager.rb
|
155
|
-
- lib/mcollective/pluginpackager/ospackage_packager.rb
|
156
|
-
- lib/mcollective/pluginpackager/rpmpackage_packager.rb
|
157
|
-
- lib/mcollective/pluginpackager/standard_definition.rb
|
158
|
-
- lib/mcollective/pluginpackager/templates/debian/Makefile.erb
|
159
|
-
- lib/mcollective/pluginpackager/templates/debian/changelog.erb
|
160
177
|
- lib/mcollective/pluginpackager/templates/debian/compat.erb
|
161
178
|
- lib/mcollective/pluginpackager/templates/debian/control.erb
|
162
|
-
- lib/mcollective/pluginpackager/templates/debian/copyright.erb
|
163
179
|
- lib/mcollective/pluginpackager/templates/debian/rules.erb
|
164
|
-
- lib/mcollective/pluginpackager/templates/
|
180
|
+
- lib/mcollective/pluginpackager/templates/debian/changelog.erb
|
181
|
+
- lib/mcollective/pluginpackager/templates/debian/Makefile.erb
|
182
|
+
- lib/mcollective/pluginpackager/templates/debian/copyright.erb
|
165
183
|
- lib/mcollective/pluginpackager/templates/module/README.md.erb
|
166
184
|
- lib/mcollective/pluginpackager/templates/module/_manifest.pp.erb
|
185
|
+
- lib/mcollective/pluginpackager/templates/module/Modulefile.erb
|
167
186
|
- lib/mcollective/pluginpackager/templates/redhat/rpm_spec.erb
|
168
|
-
- lib/mcollective/
|
169
|
-
- lib/mcollective/
|
170
|
-
- lib/mcollective/
|
171
|
-
- lib/mcollective/
|
172
|
-
- lib/mcollective/
|
173
|
-
- lib/mcollective/
|
174
|
-
- lib/mcollective/
|
175
|
-
- lib/mcollective/
|
176
|
-
- lib/mcollective/
|
177
|
-
- lib/mcollective/
|
178
|
-
- lib/mcollective/
|
179
|
-
- lib/mcollective/
|
180
|
-
- lib/mcollective/
|
181
|
-
- lib/mcollective/
|
182
|
-
- lib/mcollective/
|
183
|
-
- lib/mcollective/
|
187
|
+
- lib/mcollective/pluginpackager/standard_definition.rb
|
188
|
+
- lib/mcollective/pluginpackager/rpmpackage_packager.rb
|
189
|
+
- lib/mcollective/pluginpackager/debpackage_packager.rb
|
190
|
+
- lib/mcollective/pluginpackager/ospackage_packager.rb
|
191
|
+
- lib/mcollective/pluginpackager/modulepackage_packager.rb
|
192
|
+
- lib/mcollective/agent.rb
|
193
|
+
- lib/mcollective/agents.rb
|
194
|
+
- lib/mcollective/agent/discovery.rb
|
195
|
+
- lib/mcollective/agent/rpcutil.rb
|
196
|
+
- lib/mcollective/agent/rpcutil.ddl
|
197
|
+
- lib/mcollective/ddl.rb
|
198
|
+
- lib/mcollective/connector/activemq.rb
|
199
|
+
- lib/mcollective/connector/rabbitmq.rb
|
200
|
+
- lib/mcollective/connector/rabbitmq.ddl
|
201
|
+
- lib/mcollective/connector/activemq.ddl
|
202
|
+
- lib/mcollective/connector/base.rb
|
203
|
+
- lib/mcollective/generators/agent_generator.rb
|
204
|
+
- lib/mcollective/generators/templates/action_snippet.erb
|
205
|
+
- lib/mcollective/generators/templates/ddl.erb
|
206
|
+
- lib/mcollective/generators/templates/data_input_snippet.erb
|
207
|
+
- lib/mcollective/generators/templates/plugin.erb
|
208
|
+
- lib/mcollective/generators/data_generator.rb
|
209
|
+
- lib/mcollective/generators/base.rb
|
210
|
+
- lib/mcollective/vendor.rb
|
211
|
+
- lib/mcollective/security/ssl.rb
|
184
212
|
- lib/mcollective/security/aes_security.rb
|
185
|
-
- lib/mcollective/security/base.rb
|
186
213
|
- lib/mcollective/security/psk.rb
|
187
|
-
- lib/mcollective/security/
|
188
|
-
- lib/mcollective
|
189
|
-
-
|
190
|
-
-
|
191
|
-
- lib/mcollective/util.rb
|
192
|
-
- lib/mcollective/validator.rb
|
193
|
-
- lib/mcollective/validator/array_validator.ddl
|
194
|
-
- lib/mcollective/validator/array_validator.rb
|
195
|
-
- lib/mcollective/validator/ipv4address_validator.ddl
|
196
|
-
- lib/mcollective/validator/ipv4address_validator.rb
|
197
|
-
- lib/mcollective/validator/ipv6address_validator.ddl
|
198
|
-
- lib/mcollective/validator/ipv6address_validator.rb
|
199
|
-
- lib/mcollective/validator/length_validator.ddl
|
200
|
-
- lib/mcollective/validator/length_validator.rb
|
201
|
-
- lib/mcollective/validator/regex_validator.ddl
|
202
|
-
- lib/mcollective/validator/regex_validator.rb
|
203
|
-
- lib/mcollective/validator/shellsafe_validator.ddl
|
204
|
-
- lib/mcollective/validator/shellsafe_validator.rb
|
205
|
-
- lib/mcollective/validator/typecheck_validator.ddl
|
206
|
-
- lib/mcollective/validator/typecheck_validator.rb
|
207
|
-
- lib/mcollective/vendor.rb
|
208
|
-
- lib/mcollective/vendor/require_vendored.rb
|
209
|
-
- lib/mcollective/windows_daemon.rb
|
210
|
-
- spec/Rakefile
|
211
|
-
- spec/fixtures/application/test.rb
|
212
|
-
- spec/fixtures/test-cert.pem
|
213
|
-
- spec/fixtures/test-private.pem
|
214
|
-
- spec/fixtures/test-public.pem
|
214
|
+
- lib/mcollective/security/base.rb
|
215
|
+
- lib/mcollective.rb
|
216
|
+
- bin/mco
|
217
|
+
- spec/fixtures/util/3.out
|
215
218
|
- spec/fixtures/util/1.in
|
219
|
+
- spec/fixtures/util/4.in
|
216
220
|
- spec/fixtures/util/1.out
|
217
|
-
- spec/fixtures/util/2.in
|
218
|
-
- spec/fixtures/util/2.out
|
219
221
|
- spec/fixtures/util/3.in
|
220
|
-
- spec/fixtures/util/3.out
|
221
|
-
- spec/fixtures/util/4.in
|
222
222
|
- spec/fixtures/util/4.out
|
223
|
+
- spec/fixtures/util/2.in
|
224
|
+
- spec/fixtures/util/2.out
|
225
|
+
- spec/fixtures/application/test.rb
|
226
|
+
- spec/fixtures/test-cert.pem
|
227
|
+
- spec/fixtures/test-public.pem
|
228
|
+
- spec/fixtures/test-private.pem
|
223
229
|
- spec/monkey_patches/instance_variable_defined.rb
|
224
230
|
- spec/spec.opts
|
225
|
-
- spec/
|
226
|
-
- spec/unit/mcollective/
|
227
|
-
- spec/unit/mcollective/
|
228
|
-
- spec/unit/mcollective/
|
231
|
+
- spec/Rakefile
|
232
|
+
- spec/unit/mcollective/application_spec.rb
|
233
|
+
- spec/unit/mcollective/runnerstats_spec.rb
|
234
|
+
- spec/unit/mcollective/validator_spec.rb
|
235
|
+
- spec/unit/mcollective/rpc/agent_spec.rb
|
236
|
+
- spec/unit/mcollective/rpc/helpers_spec.rb
|
237
|
+
- spec/unit/mcollective/rpc/stats_spec.rb
|
238
|
+
- spec/unit/mcollective/rpc/actionrunner_spec.rb
|
239
|
+
- spec/unit/mcollective/rpc/request_spec.rb
|
240
|
+
- spec/unit/mcollective/rpc/result_spec.rb
|
241
|
+
- spec/unit/mcollective/rpc/client_spec.rb
|
242
|
+
- spec/unit/mcollective/rpc/reply_spec.rb
|
243
|
+
- spec/unit/mcollective/facts/base_spec.rb
|
244
|
+
- spec/unit/mcollective/facts/yaml_facts_spec.rb
|
245
|
+
- spec/unit/mcollective/vendor_spec.rb
|
246
|
+
- spec/unit/mcollective/ssl_spec.rb
|
247
|
+
- spec/unit/mcollective/application/plugin_spec.rb
|
248
|
+
- spec/unit/mcollective/validator/ipv6address_validator_spec.rb
|
249
|
+
- spec/unit/mcollective/validator/ipv4address_validator_spec.rb
|
250
|
+
- spec/unit/mcollective/validator/regex_validator_spec.rb
|
251
|
+
- spec/unit/mcollective/validator/array_validator_spec.rb
|
252
|
+
- spec/unit/mcollective/validator/length_validator_spec.rb
|
253
|
+
- spec/unit/mcollective/validator/typecheck_validator_spec.rb
|
254
|
+
- spec/unit/mcollective/validator/shellsafe_validator_spec.rb
|
229
255
|
- spec/unit/mcollective/aggregate/base_spec.rb
|
256
|
+
- spec/unit/mcollective/aggregate/average_spec.rb
|
230
257
|
- spec/unit/mcollective/aggregate/result/base_spec.rb
|
231
258
|
- spec/unit/mcollective/aggregate/result/collection_result_spec.rb
|
232
259
|
- spec/unit/mcollective/aggregate/result/numeric_result_spec.rb
|
233
260
|
- spec/unit/mcollective/aggregate/sum_spec.rb
|
234
261
|
- spec/unit/mcollective/aggregate/summary_spec.rb
|
235
|
-
- spec/unit/mcollective/
|
236
|
-
- spec/unit/mcollective/
|
237
|
-
- spec/unit/mcollective/
|
262
|
+
- spec/unit/mcollective/matcher_spec.rb
|
263
|
+
- spec/unit/mcollective/windows_daemon_spec.rb
|
264
|
+
- spec/unit/mcollective/config_spec.rb
|
238
265
|
- spec/unit/mcollective/applications_spec.rb
|
239
|
-
- spec/unit/mcollective/array_spec.rb
|
240
|
-
- spec/unit/mcollective/audit/logfile_spec.rb
|
241
266
|
- spec/unit/mcollective/cache_spec.rb
|
242
|
-
- spec/unit/mcollective/
|
243
|
-
- spec/unit/mcollective/
|
244
|
-
- spec/unit/mcollective/
|
245
|
-
- spec/unit/mcollective/
|
246
|
-
- spec/unit/mcollective/
|
247
|
-
- spec/unit/mcollective/
|
248
|
-
- spec/unit/mcollective/
|
267
|
+
- spec/unit/mcollective/matcher/scanner_spec.rb
|
268
|
+
- spec/unit/mcollective/matcher/parser_spec.rb
|
269
|
+
- spec/unit/mcollective/audit/logfile_spec.rb
|
270
|
+
- spec/unit/mcollective/string_spec.rb
|
271
|
+
- spec/unit/mcollective/ddl_spec.rb
|
272
|
+
- spec/unit/mcollective/log_spec.rb
|
273
|
+
- spec/unit/mcollective/pluginmanager_spec.rb
|
274
|
+
- spec/unit/mcollective/registration/base_spec.rb
|
275
|
+
- spec/unit/mcollective/discovery/flatfile_spec.rb
|
276
|
+
- spec/unit/mcollective/discovery/stdin_spec.rb
|
277
|
+
- spec/unit/mcollective/discovery/mc_spec.rb
|
249
278
|
- spec/unit/mcollective/data/collective_data_spec.rb
|
250
|
-
- spec/unit/mcollective/data/
|
251
|
-
- spec/unit/mcollective/data/
|
279
|
+
- spec/unit/mcollective/data/base_spec.rb
|
280
|
+
- spec/unit/mcollective/data/agent_data_spec.rb
|
252
281
|
- spec/unit/mcollective/data/result_spec.rb
|
253
|
-
- spec/unit/mcollective/
|
254
|
-
- spec/unit/mcollective/
|
282
|
+
- spec/unit/mcollective/data/fstat_data_spec.rb
|
283
|
+
- spec/unit/mcollective/data/fact_data_spec.rb
|
255
284
|
- spec/unit/mcollective/ddl/base_spec.rb
|
256
285
|
- spec/unit/mcollective/ddl/dataddl_spec.rb
|
257
286
|
- spec/unit/mcollective/ddl/discoveryddl_spec.rb
|
258
|
-
- spec/unit/mcollective/
|
259
|
-
- spec/unit/mcollective/discovery/flatfile_spec.rb
|
260
|
-
- spec/unit/mcollective/discovery/mc_spec.rb
|
261
|
-
- spec/unit/mcollective/discovery/stdin_spec.rb
|
287
|
+
- spec/unit/mcollective/ddl/agentddl_spec.rb
|
262
288
|
- spec/unit/mcollective/discovery_spec.rb
|
263
|
-
- spec/unit/mcollective/facts/base_spec.rb
|
264
|
-
- spec/unit/mcollective/facts/yaml_facts_spec.rb
|
265
|
-
- spec/unit/mcollective/facts_spec.rb
|
266
|
-
- spec/unit/mcollective/generators/agent_generator_spec.rb
|
267
|
-
- spec/unit/mcollective/generators/base_spec.rb
|
268
|
-
- spec/unit/mcollective/generators/data_generator_spec.rb
|
269
|
-
- spec/unit/mcollective/generators/snippets/agent_ddl
|
270
|
-
- spec/unit/mcollective/generators/snippets/data_ddl
|
271
|
-
- spec/unit/mcollective/log_spec.rb
|
272
289
|
- spec/unit/mcollective/logger/base_spec.rb
|
273
290
|
- spec/unit/mcollective/logger/console_logger_spec.rb
|
274
291
|
- spec/unit/mcollective/logger/file_logger_spec.rb
|
275
292
|
- spec/unit/mcollective/logger/syslog_logger_spec.rb
|
276
|
-
- spec/unit/mcollective/
|
277
|
-
- spec/unit/mcollective/
|
278
|
-
- spec/unit/mcollective/matcher_spec.rb
|
279
|
-
- spec/unit/mcollective/message_spec.rb
|
280
|
-
- spec/unit/mcollective/monkey_patches_spec.rb
|
281
|
-
- spec/unit/mcollective/optionparser_spec.rb
|
282
|
-
- spec/unit/mcollective/packagers/debpackage_packager_spec.rb
|
293
|
+
- spec/unit/mcollective/shell_spec.rb
|
294
|
+
- spec/unit/mcollective/data_spec.rb
|
283
295
|
- spec/unit/mcollective/packagers/modulepackage_packager_spec.rb
|
296
|
+
- spec/unit/mcollective/packagers/debpackage_packager_spec.rb
|
284
297
|
- spec/unit/mcollective/packagers/ospackage_spec.rb
|
285
298
|
- spec/unit/mcollective/packagers/rpmpackage_packager_spec.rb
|
286
|
-
- spec/unit/mcollective/
|
287
|
-
- spec/unit/mcollective/pluginpackager/agent_definition_spec.rb
|
299
|
+
- spec/unit/mcollective/client_spec.rb
|
288
300
|
- spec/unit/mcollective/pluginpackager/standard_definition_spec.rb
|
301
|
+
- spec/unit/mcollective/pluginpackager/agent_definition_spec.rb
|
302
|
+
- spec/unit/mcollective/agent/rpcutil_spec.rb
|
303
|
+
- spec/unit/mcollective/aggregate_spec.rb
|
304
|
+
- spec/unit/mcollective/array_spec.rb
|
305
|
+
- spec/unit/mcollective/optionparser_spec.rb
|
306
|
+
- spec/unit/mcollective/message_spec.rb
|
289
307
|
- spec/unit/mcollective/pluginpackager_spec.rb
|
290
|
-
- spec/unit/mcollective/
|
291
|
-
- spec/unit/mcollective/
|
292
|
-
- spec/unit/mcollective/
|
293
|
-
- spec/unit/mcollective/
|
294
|
-
- spec/unit/mcollective/
|
295
|
-
- spec/unit/mcollective/
|
296
|
-
- spec/unit/mcollective/
|
297
|
-
- spec/unit/mcollective/
|
298
|
-
- spec/unit/mcollective/rpc/stats_spec.rb
|
299
|
-
- spec/unit/mcollective/rpc_spec.rb
|
308
|
+
- spec/unit/mcollective/connector/rabbitmq_spec.rb
|
309
|
+
- spec/unit/mcollective/connector/base_spec.rb
|
310
|
+
- spec/unit/mcollective/connector/activemq_spec.rb
|
311
|
+
- spec/unit/mcollective/generators/snippets/data_ddl
|
312
|
+
- spec/unit/mcollective/generators/snippets/agent_ddl
|
313
|
+
- spec/unit/mcollective/generators/base_spec.rb
|
314
|
+
- spec/unit/mcollective/generators/data_generator_spec.rb
|
315
|
+
- spec/unit/mcollective/generators/agent_generator_spec.rb
|
300
316
|
- spec/unit/mcollective/runner_spec.rb
|
301
|
-
- spec/unit/mcollective/
|
317
|
+
- spec/unit/mcollective/util_spec.rb
|
318
|
+
- spec/unit/mcollective/agents_spec.rb
|
319
|
+
- spec/unit/mcollective/monkey_patches_spec.rb
|
320
|
+
- spec/unit/mcollective/unix_daemon_spec.rb
|
321
|
+
- spec/unit/mcollective/rpc_spec.rb
|
322
|
+
- spec/unit/mcollective/facts_spec.rb
|
323
|
+
- spec/unit/mcollective/symbol_spec.rb
|
302
324
|
- spec/unit/mcollective/security/aes_security_spec.rb
|
303
325
|
- spec/unit/mcollective/security/base_spec.rb
|
304
326
|
- spec/unit/mcollective/security/psk_spec.rb
|
305
|
-
- spec/
|
306
|
-
- spec/unit/mcollective/ssl_spec.rb
|
307
|
-
- spec/unit/mcollective/string_spec.rb
|
308
|
-
- spec/unit/mcollective/symbol_spec.rb
|
309
|
-
- spec/unit/mcollective/unix_daemon_spec.rb
|
310
|
-
- spec/unit/mcollective/util_spec.rb
|
311
|
-
- spec/unit/mcollective/validator/array_validator_spec.rb
|
312
|
-
- spec/unit/mcollective/validator/ipv4address_validator_spec.rb
|
313
|
-
- spec/unit/mcollective/validator/ipv6address_validator_spec.rb
|
314
|
-
- spec/unit/mcollective/validator/length_validator_spec.rb
|
315
|
-
- spec/unit/mcollective/validator/regex_validator_spec.rb
|
316
|
-
- spec/unit/mcollective/validator/shellsafe_validator_spec.rb
|
317
|
-
- spec/unit/mcollective/validator/typecheck_validator_spec.rb
|
318
|
-
- spec/unit/mcollective/validator_spec.rb
|
319
|
-
- spec/unit/mcollective/vendor_spec.rb
|
320
|
-
- spec/unit/mcollective/windows_daemon_spec.rb
|
327
|
+
- spec/spec_helper.rb
|
321
328
|
- spec/windows_spec.opts
|
322
329
|
homepage: https://docs.puppetlabs.com/mcollective/
|
323
330
|
licenses: []
|
324
|
-
metadata: {}
|
325
331
|
post_install_message:
|
326
332
|
rdoc_options:
|
327
333
|
- --line-numbers
|
@@ -340,20 +346,22 @@ rdoc_options:
|
|
340
346
|
require_paths:
|
341
347
|
- lib
|
342
348
|
required_ruby_version: !ruby/object:Gem::Requirement
|
349
|
+
none: false
|
343
350
|
requirements:
|
344
351
|
- - ! '>='
|
345
352
|
- !ruby/object:Gem::Version
|
346
353
|
version: '0'
|
347
354
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
355
|
+
none: false
|
348
356
|
requirements:
|
349
357
|
- - ! '>='
|
350
358
|
- !ruby/object:Gem::Version
|
351
359
|
version: '0'
|
352
360
|
requirements: []
|
353
361
|
rubyforge_project:
|
354
|
-
rubygems_version:
|
362
|
+
rubygems_version: 1.8.23
|
355
363
|
signing_key:
|
356
|
-
specification_version:
|
364
|
+
specification_version: 3
|
357
365
|
summary: Client libraries for the Mcollective Application Server
|
358
366
|
test_files:
|
359
367
|
- spec/fixtures/util/3.out
|
checksums.yaml
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
---
|
2
|
-
!binary "U0hBMQ==":
|
3
|
-
metadata.gz: !binary |-
|
4
|
-
MTk1NWFkMGY2NTY0ODA4MTQ2ZDg2YTA1YjA4N2M5YTcwODJlZTUzZQ==
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
ZmJhNGZlZmQxZDA1ZjI5ZTg3Y2Q2MDJiMDljNzRmZTEzNjNhOTE2NQ==
|
7
|
-
SHA512:
|
8
|
-
metadata.gz: !binary |-
|
9
|
-
NDdlMjdkN2U2NDZhNzU5ZDgyYzczMzE1NTg3NTUyNGU0NWEyZWVjMGQ4Y2Y2
|
10
|
-
MzhiNjcwYTFiNjVkM2JmMTZhMDUzNGRkMzMwOGIyNTBiYjcwMTA0MzhjOWYz
|
11
|
-
NjhjMjliNTVkZmRiNTI0NzlhNmZiZDBhNWNkODlkODJkNDgyODI=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
NDJkMmNkYjM2M2YwODAyNmIzYjcxODRkNDc2YmZjZjZkYmM4YTA4MWQ2NDM1
|
14
|
-
OTVjYmNhYzk3MmU5YjU4MDRiNzUxZWNkZTBlZWRmNWZlOWNkODI3MDc2ZTY3
|
15
|
-
YTYwNDNlMzc2YmVhN2NiMzc5NjZkNzgwYmRhNjAyMTNhMjk4ZWY=
|