mcollective-client 2.8.2 → 2.8.3
Sign up to get free protection for your applications and to get access to all the features.
data/lib/mcollective.rb
CHANGED
@@ -0,0 +1,87 @@
|
|
1
|
+
module MCollective
|
2
|
+
class Application::Describe_filter<Application
|
3
|
+
exclude_argument_sections "common", "rpc"
|
4
|
+
|
5
|
+
description "Display human readable interpretation of filters"
|
6
|
+
|
7
|
+
usage "mco describe_filter -S <filter> -F <filter> -C <filter>"
|
8
|
+
|
9
|
+
def describe_s_filter(stack)
|
10
|
+
indent = " "
|
11
|
+
old_indent = " "
|
12
|
+
puts "-S Query expands to the following instructions:"
|
13
|
+
puts
|
14
|
+
stack.each do |token|
|
15
|
+
if token.keys[0] == "statement"
|
16
|
+
if token.values[0] =~ /(<=|>=|=|=~|=)/
|
17
|
+
op = $1
|
18
|
+
k,v = token.values[0].split(op)
|
19
|
+
puts indent + get_fact_string(k, v, op)
|
20
|
+
else
|
21
|
+
puts indent + get_class_string(token.values[0])
|
22
|
+
end
|
23
|
+
elsif token.keys[0] == "fstatement"
|
24
|
+
v = token.values[0]
|
25
|
+
result_string = indent + "Execute the Data Query '#{v["name"]}'"
|
26
|
+
if v["params"]
|
27
|
+
result_string += " with parameters (#{v["params"]})"
|
28
|
+
end
|
29
|
+
result_string += ". "
|
30
|
+
result_string += "Check if the query's '#{v["value"]}' value #{v["operator"]} '#{v["r_compare"]}' "
|
31
|
+
puts result_string
|
32
|
+
elsif token.keys[0] == "("
|
33
|
+
puts indent + "("
|
34
|
+
old_indent = indent
|
35
|
+
indent *= 2
|
36
|
+
elsif token.keys[0] == ")"
|
37
|
+
indent = old_indent
|
38
|
+
puts indent + ")"
|
39
|
+
else
|
40
|
+
puts indent + token.keys[0].upcase
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
def describe_f_filter(facts)
|
46
|
+
puts "-F filter expands to the following fact comparisons:"
|
47
|
+
puts
|
48
|
+
facts.each do |f|
|
49
|
+
puts " " + get_fact_string(f[:fact], f[:value], f[:operator])
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
def describe_c_filter(classes)
|
54
|
+
puts "-C filter expands to the following class checks:"
|
55
|
+
puts
|
56
|
+
classes.each do |c|
|
57
|
+
puts " " + get_class_string(c)
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
def main
|
62
|
+
if !(@options[:filter]["fact"].empty?)
|
63
|
+
describe_f_filter(@options[:filter]["fact"])
|
64
|
+
puts
|
65
|
+
end
|
66
|
+
|
67
|
+
if !(@options[:filter]["cf_class"].empty?)
|
68
|
+
describe_c_filter(@options[:filter]["cf_class"])
|
69
|
+
puts
|
70
|
+
end
|
71
|
+
|
72
|
+
if !(@options[:filter]["compound"].empty?)
|
73
|
+
describe_s_filter(@options[:filter]["compound"][0])
|
74
|
+
puts
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
private
|
79
|
+
def get_fact_string(fact, value, op)
|
80
|
+
"Check if fact '#{fact}' #{op} '#{value}'"
|
81
|
+
end
|
82
|
+
|
83
|
+
def get_class_string(classname)
|
84
|
+
"Check if class '#{classname}' is present on the host"
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
@@ -64,6 +64,8 @@ module MCollective
|
|
64
64
|
func = false
|
65
65
|
current_token_value = ""
|
66
66
|
j = @token_index
|
67
|
+
escaped = false
|
68
|
+
escaped_with = ""
|
67
69
|
|
68
70
|
begin
|
69
71
|
if (@arguments[j] == "/")
|
@@ -89,7 +91,6 @@ module MCollective
|
|
89
91
|
break
|
90
92
|
end
|
91
93
|
end until (j >= @arguments.size) || (@arguments[j] =~ /\//)
|
92
|
-
else
|
93
94
|
while (j < @arguments.size) && ((@arguments[j] != " ") && (@arguments[j] != ")"))
|
94
95
|
current_token_value << @arguments[j]
|
95
96
|
j += 1
|
@@ -100,32 +101,70 @@ module MCollective
|
|
100
101
|
# Identify and tokenize regular expressions by ignoring everything between /'s
|
101
102
|
if @arguments[j] == '/'
|
102
103
|
current_token_value << '/'
|
103
|
-
j+=1
|
104
|
+
j += 1
|
104
105
|
while(j < @arguments.size && @arguments[j] != '/')
|
106
|
+
if @arguments[j] == '\\'
|
107
|
+
# eat the escape char
|
108
|
+
current_token_value << @arguments[j]
|
109
|
+
j += 1
|
110
|
+
escaped = true
|
111
|
+
end
|
112
|
+
|
105
113
|
current_token_value << @arguments[j]
|
106
114
|
j += 1
|
107
115
|
end
|
108
116
|
current_token_value << @arguments[j] if @arguments[j]
|
109
117
|
break
|
110
118
|
end
|
119
|
+
|
111
120
|
if @arguments[j+1] == "("
|
112
121
|
func = true
|
113
122
|
be_greedy = true
|
114
123
|
end
|
124
|
+
|
125
|
+
if @arguments[j+1] == '"' || @arguments[j+1] == "'"
|
126
|
+
func = false
|
127
|
+
be_greedy = true
|
128
|
+
escaped = true
|
129
|
+
escaped_with = @arguments[j+1]
|
130
|
+
end
|
131
|
+
|
115
132
|
current_token_value << @arguments[j]
|
133
|
+
|
116
134
|
if be_greedy
|
117
|
-
|
118
|
-
j
|
119
|
-
|
135
|
+
if func
|
136
|
+
while !(j+1 >= @arguments.size) && @arguments[j] != ')'
|
137
|
+
j += 1
|
138
|
+
current_token_value << @arguments[j]
|
139
|
+
end
|
140
|
+
else
|
141
|
+
j += 2 # step over first "
|
142
|
+
@white_spaces += 1
|
143
|
+
# identified "..."
|
144
|
+
while !(j+1 >= @arguments.size) && @arguments[j] != escaped_with
|
145
|
+
if @arguments[j] == '\\'
|
146
|
+
# eat the escape char but don't add it to the token, or we
|
147
|
+
# end up with \\\"
|
148
|
+
@white_spaces += 1
|
149
|
+
j += 1
|
150
|
+
escaped = true
|
151
|
+
end
|
152
|
+
current_token_value << @arguments[j]
|
153
|
+
j += 1
|
154
|
+
end
|
155
|
+
@white_spaces += 1
|
120
156
|
end
|
157
|
+
|
121
158
|
j += 1
|
122
159
|
be_greedy = false
|
123
160
|
else
|
124
161
|
j += 1
|
125
162
|
end
|
163
|
+
|
126
164
|
if(@arguments[j] == ' ')
|
127
165
|
break if(is_klass?(j) && !(@arguments[j-1] =~ /=|<|>/))
|
128
166
|
end
|
167
|
+
|
129
168
|
if( (@arguments[j] == ' ') && (@seperation_counter < 2) && !(current_token_value.match(/^.+(=|<|>).+$/)) )
|
130
169
|
if((index = lookahead(j)))
|
131
170
|
j = index
|
@@ -158,6 +197,9 @@ module MCollective
|
|
158
197
|
return "bad_token", [@token_index - current_token_value.size + 1, @token_index]
|
159
198
|
end
|
160
199
|
else
|
200
|
+
if escaped
|
201
|
+
return "statement", current_token_value
|
202
|
+
end
|
161
203
|
slash_err = false
|
162
204
|
current_token_value.split('').each do |c|
|
163
205
|
if c == '/'
|
@@ -110,7 +110,7 @@ module MCollective
|
|
110
110
|
|
111
111
|
# These options should always be present
|
112
112
|
def add_required_options
|
113
|
-
@parser.on('-c', '--config FILE', 'Load
|
113
|
+
@parser.on('-c', '--config FILE', 'Load configuration from file rather than default') do |f|
|
114
114
|
@options[:config] = f
|
115
115
|
end
|
116
116
|
|
@@ -169,6 +169,42 @@ module MCollective
|
|
169
169
|
token = scanner.get_token
|
170
170
|
token.should == ["fstatement", "foo('bar=baz')"]
|
171
171
|
end
|
172
|
+
|
173
|
+
it "should correctly tokenize a statement escaped with double quotes" do
|
174
|
+
scanner = Scanner.new('foo="a very long string"')
|
175
|
+
token = scanner.get_token
|
176
|
+
token.should == ["statement", "foo=a very long string"]
|
177
|
+
end
|
178
|
+
|
179
|
+
it "should correctly tokenize a statement escaped with single quotes" do
|
180
|
+
scanner = Scanner.new("foo='a very long string'")
|
181
|
+
token = scanner.get_token
|
182
|
+
token.should == ["statement", "foo=a very long string"]
|
183
|
+
end
|
184
|
+
|
185
|
+
it "should correctly tokenize a statement with an escaped sequence and special chars" do
|
186
|
+
scanner = Scanner.new('foo="/slashes/in/the/hizzouse"')
|
187
|
+
token = scanner.get_token
|
188
|
+
token.should == ["statement", "foo=/slashes/in/the/hizzouse"]
|
189
|
+
end
|
190
|
+
|
191
|
+
it "should correctly tokenize escaped regular expressions" do
|
192
|
+
scanner = Scanner.new('puppet_vardir=/\/var\/lib\/puppet/')
|
193
|
+
token = scanner.get_token
|
194
|
+
token.should == ["statement", 'puppet_vardir=/\/var\/lib\/puppet/']
|
195
|
+
end
|
196
|
+
|
197
|
+
it "should correctly tokenize a statement escaped with double quotes containing escaped quotes" do
|
198
|
+
scanner = Scanner.new('foo="a very long \"embedded quoted\" string"')
|
199
|
+
token = scanner.get_token
|
200
|
+
token.should == ["statement", "foo=a very long \"embedded quoted\" string"]
|
201
|
+
end
|
202
|
+
|
203
|
+
it "should correctly tokenize a statement escaped with single quotes containig escaped quotes" do
|
204
|
+
scanner = Scanner.new("foo='a very long \\'embedded quoted\\' string'")
|
205
|
+
token = scanner.get_token
|
206
|
+
token.should == ["statement", "foo=a very long 'embedded quoted' string"]
|
207
|
+
end
|
172
208
|
end
|
173
209
|
end
|
174
210
|
end
|
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.8.
|
4
|
+
version: 2.8.3
|
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: 2015-
|
12
|
+
date: 2015-08-17 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,268 +66,268 @@ 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/describe_filter.rb
|
95
|
+
- lib/mcollective/application/facts.rb
|
96
|
+
- lib/mcollective/application/help.rb
|
97
|
+
- lib/mcollective/application/inventory.rb
|
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
|
69
115
|
- lib/mcollective/aggregate/average.ddl
|
70
|
-
- lib/mcollective/aggregate/
|
71
|
-
- lib/mcollective/aggregate/base.rb
|
72
|
-
- lib/mcollective/aggregate/result.rb
|
73
|
-
- lib/mcollective/aggregate/result/base.rb
|
116
|
+
- lib/mcollective/aggregate/summary.ddl
|
74
117
|
- lib/mcollective/aggregate/result/collection_result.rb
|
75
118
|
- lib/mcollective/aggregate/result/numeric_result.rb
|
76
|
-
- lib/mcollective/aggregate/
|
119
|
+
- lib/mcollective/aggregate/result/base.rb
|
77
120
|
- lib/mcollective/aggregate/sum.rb
|
78
|
-
- lib/mcollective/aggregate/
|
121
|
+
- lib/mcollective/aggregate/result.rb
|
122
|
+
- lib/mcollective/aggregate/average.rb
|
79
123
|
- lib/mcollective/aggregate/summary.rb
|
80
|
-
- lib/mcollective/
|
81
|
-
- lib/mcollective/
|
82
|
-
- lib/mcollective/
|
83
|
-
- lib/mcollective/
|
84
|
-
- lib/mcollective/
|
85
|
-
- lib/mcollective/
|
86
|
-
- lib/mcollective/
|
87
|
-
- lib/mcollective/
|
88
|
-
- lib/mcollective/
|
89
|
-
- lib/mcollective/applications.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
|
90
133
|
- lib/mcollective/audit/logfile.rb
|
91
|
-
- lib/mcollective/cache.rb
|
92
|
-
- lib/mcollective/client.rb
|
93
134
|
- lib/mcollective/config.rb
|
94
|
-
- lib/mcollective/
|
95
|
-
- lib/mcollective/
|
96
|
-
- lib/mcollective/
|
97
|
-
- lib/mcollective/
|
98
|
-
- lib/mcollective/
|
99
|
-
- lib/mcollective/
|
100
|
-
- lib/mcollective/
|
101
|
-
- 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
|
102
153
|
- lib/mcollective/data/agent_data.rb
|
103
|
-
- lib/mcollective/data/base.rb
|
104
|
-
- lib/mcollective/data/collective_data.ddl
|
105
154
|
- lib/mcollective/data/collective_data.rb
|
106
|
-
- lib/mcollective/data/
|
155
|
+
- lib/mcollective/data/agent_data.ddl
|
156
|
+
- lib/mcollective/data/result.rb
|
157
|
+
- lib/mcollective/data/collective_data.ddl
|
107
158
|
- lib/mcollective/data/fact_data.rb
|
108
159
|
- lib/mcollective/data/fstat_data.ddl
|
109
160
|
- lib/mcollective/data/fstat_data.rb
|
110
|
-
- lib/mcollective/data/
|
111
|
-
- lib/mcollective/ddl.rb
|
112
|
-
- lib/mcollective/ddl/agentddl.rb
|
113
|
-
- lib/mcollective/ddl/base.rb
|
161
|
+
- lib/mcollective/data/base.rb
|
114
162
|
- lib/mcollective/ddl/dataddl.rb
|
115
163
|
- lib/mcollective/ddl/discoveryddl.rb
|
116
164
|
- lib/mcollective/ddl/validatorddl.rb
|
117
|
-
- lib/mcollective/
|
118
|
-
- lib/mcollective/
|
119
|
-
- lib/mcollective/
|
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
|
137
|
-
- lib/mcollective/logger.rb
|
138
|
-
- lib/mcollective/logger/base.rb
|
139
|
-
- lib/mcollective/logger/console_logger.rb
|
165
|
+
- lib/mcollective/ddl/agentddl.rb
|
166
|
+
- lib/mcollective/ddl/base.rb
|
167
|
+
- lib/mcollective/data.rb
|
140
168
|
- lib/mcollective/logger/file_logger.rb
|
169
|
+
- lib/mcollective/logger/console_logger.rb
|
141
170
|
- lib/mcollective/logger/syslog_logger.rb
|
142
|
-
- lib/mcollective/
|
143
|
-
- lib/mcollective/
|
144
|
-
- lib/mcollective/
|
145
|
-
- lib/mcollective/
|
146
|
-
- lib/mcollective/
|
147
|
-
- lib/mcollective/optionparser.rb
|
148
|
-
- lib/mcollective/pluginmanager.rb
|
149
|
-
- 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
|
150
176
|
- 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
|
158
177
|
- lib/mcollective/pluginpackager/templates/debian/compat.erb
|
159
178
|
- lib/mcollective/pluginpackager/templates/debian/control.erb
|
160
|
-
- lib/mcollective/pluginpackager/templates/debian/copyright.erb
|
161
179
|
- lib/mcollective/pluginpackager/templates/debian/rules.erb
|
162
|
-
- 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
|
163
183
|
- lib/mcollective/pluginpackager/templates/module/README.md.erb
|
164
184
|
- lib/mcollective/pluginpackager/templates/module/_manifest.pp.erb
|
185
|
+
- lib/mcollective/pluginpackager/templates/module/Modulefile.erb
|
165
186
|
- lib/mcollective/pluginpackager/templates/redhat/rpm_spec.erb
|
166
|
-
- lib/mcollective/
|
167
|
-
- lib/mcollective/
|
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/
|
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
|
182
212
|
- lib/mcollective/security/aes_security.rb
|
183
|
-
- lib/mcollective/security/base.rb
|
184
213
|
- lib/mcollective/security/psk.rb
|
185
|
-
- lib/mcollective/security/
|
186
|
-
- lib/mcollective
|
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
|
214
|
+
- lib/mcollective/security/base.rb
|
215
|
+
- lib/mcollective.rb
|
208
216
|
- bin/mco
|
209
|
-
- spec/
|
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
|
+
- spec/fixtures/util/3.out
|
214
218
|
- spec/fixtures/util/1.in
|
219
|
+
- spec/fixtures/util/4.in
|
215
220
|
- spec/fixtures/util/1.out
|
216
|
-
- spec/fixtures/util/2.in
|
217
|
-
- spec/fixtures/util/2.out
|
218
221
|
- spec/fixtures/util/3.in
|
219
|
-
- spec/fixtures/util/3.out
|
220
|
-
- spec/fixtures/util/4.in
|
221
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
|
222
229
|
- spec/monkey_patches/instance_variable_defined.rb
|
223
230
|
- spec/spec.opts
|
224
|
-
- spec/
|
225
|
-
- spec/unit/mcollective/
|
226
|
-
- spec/unit/mcollective/
|
227
|
-
- 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
|
228
255
|
- spec/unit/mcollective/aggregate/base_spec.rb
|
256
|
+
- spec/unit/mcollective/aggregate/average_spec.rb
|
229
257
|
- spec/unit/mcollective/aggregate/result/base_spec.rb
|
230
258
|
- spec/unit/mcollective/aggregate/result/collection_result_spec.rb
|
231
259
|
- spec/unit/mcollective/aggregate/result/numeric_result_spec.rb
|
232
260
|
- spec/unit/mcollective/aggregate/sum_spec.rb
|
233
261
|
- spec/unit/mcollective/aggregate/summary_spec.rb
|
234
|
-
- spec/unit/mcollective/
|
235
|
-
- spec/unit/mcollective/
|
236
|
-
- 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
|
237
265
|
- spec/unit/mcollective/applications_spec.rb
|
238
|
-
- spec/unit/mcollective/
|
266
|
+
- spec/unit/mcollective/cache_spec.rb
|
267
|
+
- spec/unit/mcollective/matcher/scanner_spec.rb
|
268
|
+
- spec/unit/mcollective/matcher/parser_spec.rb
|
239
269
|
- spec/unit/mcollective/audit/logfile_spec.rb
|
240
|
-
- spec/unit/mcollective/
|
241
|
-
- spec/unit/mcollective/
|
242
|
-
- spec/unit/mcollective/
|
243
|
-
- spec/unit/mcollective/
|
244
|
-
- spec/unit/mcollective/
|
245
|
-
- spec/unit/mcollective/
|
246
|
-
- spec/unit/mcollective/
|
247
|
-
- spec/unit/mcollective/
|
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
|
248
278
|
- spec/unit/mcollective/data/collective_data_spec.rb
|
249
|
-
- spec/unit/mcollective/data/
|
250
|
-
- spec/unit/mcollective/data/
|
279
|
+
- spec/unit/mcollective/data/base_spec.rb
|
280
|
+
- spec/unit/mcollective/data/agent_data_spec.rb
|
251
281
|
- spec/unit/mcollective/data/result_spec.rb
|
252
|
-
- spec/unit/mcollective/
|
253
|
-
- spec/unit/mcollective/
|
282
|
+
- spec/unit/mcollective/data/fstat_data_spec.rb
|
283
|
+
- spec/unit/mcollective/data/fact_data_spec.rb
|
254
284
|
- spec/unit/mcollective/ddl/base_spec.rb
|
255
285
|
- spec/unit/mcollective/ddl/dataddl_spec.rb
|
256
286
|
- spec/unit/mcollective/ddl/discoveryddl_spec.rb
|
257
|
-
- spec/unit/mcollective/
|
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
|
+
- spec/unit/mcollective/ddl/agentddl_spec.rb
|
261
288
|
- 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
|
271
289
|
- spec/unit/mcollective/logger/base_spec.rb
|
272
290
|
- spec/unit/mcollective/logger/console_logger_spec.rb
|
273
291
|
- spec/unit/mcollective/logger/file_logger_spec.rb
|
274
292
|
- spec/unit/mcollective/logger/syslog_logger_spec.rb
|
275
|
-
- spec/unit/mcollective/
|
276
|
-
- spec/unit/mcollective/
|
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
|
281
|
-
- spec/unit/mcollective/packagers/debpackage_packager_spec.rb
|
293
|
+
- spec/unit/mcollective/shell_spec.rb
|
294
|
+
- spec/unit/mcollective/data_spec.rb
|
282
295
|
- spec/unit/mcollective/packagers/modulepackage_packager_spec.rb
|
296
|
+
- spec/unit/mcollective/packagers/debpackage_packager_spec.rb
|
283
297
|
- spec/unit/mcollective/packagers/ospackage_spec.rb
|
284
298
|
- spec/unit/mcollective/packagers/rpmpackage_packager_spec.rb
|
285
|
-
- spec/unit/mcollective/
|
286
|
-
- spec/unit/mcollective/pluginpackager/agent_definition_spec.rb
|
299
|
+
- spec/unit/mcollective/client_spec.rb
|
287
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
|
288
307
|
- spec/unit/mcollective/pluginpackager_spec.rb
|
289
|
-
- spec/unit/mcollective/
|
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/rpc/stats_spec.rb
|
298
|
-
- 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
|
299
316
|
- spec/unit/mcollective/runner_spec.rb
|
300
|
-
- 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
|
301
324
|
- spec/unit/mcollective/security/aes_security_spec.rb
|
302
325
|
- spec/unit/mcollective/security/base_spec.rb
|
303
326
|
- spec/unit/mcollective/security/psk_spec.rb
|
304
|
-
- spec/
|
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
|
+
- spec/spec_helper.rb
|
320
328
|
- spec/windows_spec.opts
|
321
329
|
homepage: https://docs.puppetlabs.com/mcollective/
|
322
330
|
licenses: []
|
323
|
-
metadata: {}
|
324
331
|
post_install_message:
|
325
332
|
rdoc_options:
|
326
333
|
- --line-numbers
|
@@ -339,131 +346,133 @@ rdoc_options:
|
|
339
346
|
require_paths:
|
340
347
|
- lib
|
341
348
|
required_ruby_version: !ruby/object:Gem::Requirement
|
349
|
+
none: false
|
342
350
|
requirements:
|
343
|
-
- - '>='
|
351
|
+
- - ! '>='
|
344
352
|
- !ruby/object:Gem::Version
|
345
353
|
version: '0'
|
346
354
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
355
|
+
none: false
|
347
356
|
requirements:
|
348
|
-
- - '>='
|
357
|
+
- - ! '>='
|
349
358
|
- !ruby/object:Gem::Version
|
350
359
|
version: '0'
|
351
360
|
requirements: []
|
352
361
|
rubyforge_project:
|
353
|
-
rubygems_version:
|
362
|
+
rubygems_version: 1.8.23
|
354
363
|
signing_key:
|
355
|
-
specification_version:
|
364
|
+
specification_version: 3
|
356
365
|
summary: Client libraries for the Mcollective Application Server
|
357
366
|
test_files:
|
358
|
-
- spec/
|
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
|
+
- spec/fixtures/util/3.out
|
363
368
|
- spec/fixtures/util/1.in
|
369
|
+
- spec/fixtures/util/4.in
|
364
370
|
- spec/fixtures/util/1.out
|
365
|
-
- spec/fixtures/util/2.in
|
366
|
-
- spec/fixtures/util/2.out
|
367
371
|
- spec/fixtures/util/3.in
|
368
|
-
- spec/fixtures/util/3.out
|
369
|
-
- spec/fixtures/util/4.in
|
370
372
|
- spec/fixtures/util/4.out
|
373
|
+
- spec/fixtures/util/2.in
|
374
|
+
- spec/fixtures/util/2.out
|
375
|
+
- spec/fixtures/application/test.rb
|
376
|
+
- spec/fixtures/test-cert.pem
|
377
|
+
- spec/fixtures/test-public.pem
|
378
|
+
- spec/fixtures/test-private.pem
|
371
379
|
- spec/monkey_patches/instance_variable_defined.rb
|
372
380
|
- spec/spec.opts
|
373
|
-
- spec/
|
374
|
-
- spec/unit/mcollective/
|
375
|
-
- spec/unit/mcollective/
|
376
|
-
- spec/unit/mcollective/
|
381
|
+
- spec/Rakefile
|
382
|
+
- spec/unit/mcollective/application_spec.rb
|
383
|
+
- spec/unit/mcollective/runnerstats_spec.rb
|
384
|
+
- spec/unit/mcollective/validator_spec.rb
|
385
|
+
- spec/unit/mcollective/rpc/agent_spec.rb
|
386
|
+
- spec/unit/mcollective/rpc/helpers_spec.rb
|
387
|
+
- spec/unit/mcollective/rpc/stats_spec.rb
|
388
|
+
- spec/unit/mcollective/rpc/actionrunner_spec.rb
|
389
|
+
- spec/unit/mcollective/rpc/request_spec.rb
|
390
|
+
- spec/unit/mcollective/rpc/result_spec.rb
|
391
|
+
- spec/unit/mcollective/rpc/client_spec.rb
|
392
|
+
- spec/unit/mcollective/rpc/reply_spec.rb
|
393
|
+
- spec/unit/mcollective/facts/base_spec.rb
|
394
|
+
- spec/unit/mcollective/facts/yaml_facts_spec.rb
|
395
|
+
- spec/unit/mcollective/vendor_spec.rb
|
396
|
+
- spec/unit/mcollective/ssl_spec.rb
|
397
|
+
- spec/unit/mcollective/application/plugin_spec.rb
|
398
|
+
- spec/unit/mcollective/validator/ipv6address_validator_spec.rb
|
399
|
+
- spec/unit/mcollective/validator/ipv4address_validator_spec.rb
|
400
|
+
- spec/unit/mcollective/validator/regex_validator_spec.rb
|
401
|
+
- spec/unit/mcollective/validator/array_validator_spec.rb
|
402
|
+
- spec/unit/mcollective/validator/length_validator_spec.rb
|
403
|
+
- spec/unit/mcollective/validator/typecheck_validator_spec.rb
|
404
|
+
- spec/unit/mcollective/validator/shellsafe_validator_spec.rb
|
377
405
|
- spec/unit/mcollective/aggregate/base_spec.rb
|
406
|
+
- spec/unit/mcollective/aggregate/average_spec.rb
|
378
407
|
- spec/unit/mcollective/aggregate/result/base_spec.rb
|
379
408
|
- spec/unit/mcollective/aggregate/result/collection_result_spec.rb
|
380
409
|
- spec/unit/mcollective/aggregate/result/numeric_result_spec.rb
|
381
410
|
- spec/unit/mcollective/aggregate/sum_spec.rb
|
382
411
|
- spec/unit/mcollective/aggregate/summary_spec.rb
|
383
|
-
- spec/unit/mcollective/
|
384
|
-
- spec/unit/mcollective/
|
385
|
-
- spec/unit/mcollective/
|
412
|
+
- spec/unit/mcollective/matcher_spec.rb
|
413
|
+
- spec/unit/mcollective/windows_daemon_spec.rb
|
414
|
+
- spec/unit/mcollective/config_spec.rb
|
386
415
|
- spec/unit/mcollective/applications_spec.rb
|
387
|
-
- spec/unit/mcollective/array_spec.rb
|
388
|
-
- spec/unit/mcollective/audit/logfile_spec.rb
|
389
416
|
- spec/unit/mcollective/cache_spec.rb
|
390
|
-
- spec/unit/mcollective/
|
391
|
-
- spec/unit/mcollective/
|
392
|
-
- spec/unit/mcollective/
|
393
|
-
- spec/unit/mcollective/
|
394
|
-
- spec/unit/mcollective/
|
395
|
-
- spec/unit/mcollective/
|
396
|
-
- spec/unit/mcollective/
|
417
|
+
- spec/unit/mcollective/matcher/scanner_spec.rb
|
418
|
+
- spec/unit/mcollective/matcher/parser_spec.rb
|
419
|
+
- spec/unit/mcollective/audit/logfile_spec.rb
|
420
|
+
- spec/unit/mcollective/string_spec.rb
|
421
|
+
- spec/unit/mcollective/ddl_spec.rb
|
422
|
+
- spec/unit/mcollective/log_spec.rb
|
423
|
+
- spec/unit/mcollective/pluginmanager_spec.rb
|
424
|
+
- spec/unit/mcollective/registration/base_spec.rb
|
425
|
+
- spec/unit/mcollective/discovery/flatfile_spec.rb
|
426
|
+
- spec/unit/mcollective/discovery/stdin_spec.rb
|
427
|
+
- spec/unit/mcollective/discovery/mc_spec.rb
|
397
428
|
- spec/unit/mcollective/data/collective_data_spec.rb
|
398
|
-
- spec/unit/mcollective/data/
|
399
|
-
- spec/unit/mcollective/data/
|
429
|
+
- spec/unit/mcollective/data/base_spec.rb
|
430
|
+
- spec/unit/mcollective/data/agent_data_spec.rb
|
400
431
|
- spec/unit/mcollective/data/result_spec.rb
|
401
|
-
- spec/unit/mcollective/
|
402
|
-
- spec/unit/mcollective/
|
432
|
+
- spec/unit/mcollective/data/fstat_data_spec.rb
|
433
|
+
- spec/unit/mcollective/data/fact_data_spec.rb
|
403
434
|
- spec/unit/mcollective/ddl/base_spec.rb
|
404
435
|
- spec/unit/mcollective/ddl/dataddl_spec.rb
|
405
436
|
- spec/unit/mcollective/ddl/discoveryddl_spec.rb
|
406
|
-
- spec/unit/mcollective/
|
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
|
+
- spec/unit/mcollective/ddl/agentddl_spec.rb
|
410
438
|
- 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
|
420
439
|
- spec/unit/mcollective/logger/base_spec.rb
|
421
440
|
- spec/unit/mcollective/logger/console_logger_spec.rb
|
422
441
|
- spec/unit/mcollective/logger/file_logger_spec.rb
|
423
442
|
- spec/unit/mcollective/logger/syslog_logger_spec.rb
|
424
|
-
- spec/unit/mcollective/
|
425
|
-
- spec/unit/mcollective/
|
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
|
430
|
-
- spec/unit/mcollective/packagers/debpackage_packager_spec.rb
|
443
|
+
- spec/unit/mcollective/shell_spec.rb
|
444
|
+
- spec/unit/mcollective/data_spec.rb
|
431
445
|
- spec/unit/mcollective/packagers/modulepackage_packager_spec.rb
|
446
|
+
- spec/unit/mcollective/packagers/debpackage_packager_spec.rb
|
432
447
|
- spec/unit/mcollective/packagers/ospackage_spec.rb
|
433
448
|
- spec/unit/mcollective/packagers/rpmpackage_packager_spec.rb
|
434
|
-
- spec/unit/mcollective/
|
435
|
-
- spec/unit/mcollective/pluginpackager/agent_definition_spec.rb
|
449
|
+
- spec/unit/mcollective/client_spec.rb
|
436
450
|
- spec/unit/mcollective/pluginpackager/standard_definition_spec.rb
|
451
|
+
- spec/unit/mcollective/pluginpackager/agent_definition_spec.rb
|
452
|
+
- spec/unit/mcollective/agent/rpcutil_spec.rb
|
453
|
+
- spec/unit/mcollective/aggregate_spec.rb
|
454
|
+
- spec/unit/mcollective/array_spec.rb
|
455
|
+
- spec/unit/mcollective/optionparser_spec.rb
|
456
|
+
- spec/unit/mcollective/message_spec.rb
|
437
457
|
- spec/unit/mcollective/pluginpackager_spec.rb
|
438
|
-
- spec/unit/mcollective/
|
439
|
-
- spec/unit/mcollective/
|
440
|
-
- spec/unit/mcollective/
|
441
|
-
- spec/unit/mcollective/
|
442
|
-
- spec/unit/mcollective/
|
443
|
-
- spec/unit/mcollective/
|
444
|
-
- spec/unit/mcollective/
|
445
|
-
- spec/unit/mcollective/
|
446
|
-
- spec/unit/mcollective/rpc/stats_spec.rb
|
447
|
-
- spec/unit/mcollective/rpc_spec.rb
|
458
|
+
- spec/unit/mcollective/connector/rabbitmq_spec.rb
|
459
|
+
- spec/unit/mcollective/connector/base_spec.rb
|
460
|
+
- spec/unit/mcollective/connector/activemq_spec.rb
|
461
|
+
- spec/unit/mcollective/generators/snippets/data_ddl
|
462
|
+
- spec/unit/mcollective/generators/snippets/agent_ddl
|
463
|
+
- spec/unit/mcollective/generators/base_spec.rb
|
464
|
+
- spec/unit/mcollective/generators/data_generator_spec.rb
|
465
|
+
- spec/unit/mcollective/generators/agent_generator_spec.rb
|
448
466
|
- spec/unit/mcollective/runner_spec.rb
|
449
|
-
- spec/unit/mcollective/
|
467
|
+
- spec/unit/mcollective/util_spec.rb
|
468
|
+
- spec/unit/mcollective/agents_spec.rb
|
469
|
+
- spec/unit/mcollective/monkey_patches_spec.rb
|
470
|
+
- spec/unit/mcollective/unix_daemon_spec.rb
|
471
|
+
- spec/unit/mcollective/rpc_spec.rb
|
472
|
+
- spec/unit/mcollective/facts_spec.rb
|
473
|
+
- spec/unit/mcollective/symbol_spec.rb
|
450
474
|
- spec/unit/mcollective/security/aes_security_spec.rb
|
451
475
|
- spec/unit/mcollective/security/base_spec.rb
|
452
476
|
- spec/unit/mcollective/security/psk_spec.rb
|
453
|
-
- spec/
|
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
|
+
- spec/spec_helper.rb
|
469
478
|
- spec/windows_spec.opts
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: 904c505ab77f21d5d77d3eb209fea1d13ac0da5b
|
4
|
-
data.tar.gz: 64f5cacf2b09eb58e47f5d1024a291b6d45bd5cf
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: 7bbb22468aa2d8c296f4251d1802c8b1c67172a864aa2f2fd26f8418f7e1f6a4c53e32afccd539a765bb426040ddda12f54f61159a3f5ea5dbcbfb42a272a1f4
|
7
|
-
data.tar.gz: 2a0f8ac39135386fa1bc16702eead7e442e4de491ca545950baf12f33d7a40817e16f4a92e5bc1dbd39246d261fad5828e7cbb9dcb041efb01a910f4b522ad40
|