mcollective-client 2.8.0 → 2.8.1

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