choria-mcorpc-support 2.24.4 → 2.25.0
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 +4 -4
- data/lib/mcollective/discovery/delegate.rb +3 -0
- data/lib/mcollective/util/tasks_support.rb +12 -3
- metadata +8 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 872d9ec79ab2ad9236e7d7d353dc57914b5b1f35bf9089c6cea13aa9580feb77
|
|
4
|
+
data.tar.gz: c2f616aee7f58388f69b7db4d0780ec287e1d57f95777597f0dc621b0cc6b6f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 30b8face825e23b87c694600d70a44f92ddd03ef9d8e62935e703d2ba7f62ce328b6a61352fff94214d9abf5944c2f6d09098de0751f6f6060d2c76f2ed7f208
|
|
7
|
+
data.tar.gz: 61ca3c642f3a6eae367d72572314c99183c983dab65560ba17056f967955b56518369415fad370916391e7c29c0d879a4fb0281900ba068b94d578d604b29af8
|
|
@@ -10,6 +10,9 @@ module MCollective
|
|
|
10
10
|
|
|
11
11
|
cmd = [binary_name, "discover", "-j", "--silent"]
|
|
12
12
|
|
|
13
|
+
config = client.options.fetch(:config)
|
|
14
|
+
cmd << "--config" << config if config
|
|
15
|
+
|
|
13
16
|
cmd << "-T" << filter["collective"] if filter["collective"]
|
|
14
17
|
|
|
15
18
|
filter.fetch("identity", []).each do |i|
|
|
@@ -65,7 +65,7 @@ module MCollective
|
|
|
65
65
|
# AIO path to binaries like wrappers etc
|
|
66
66
|
def aio_bin_path
|
|
67
67
|
if Util.windows?
|
|
68
|
-
'C:\Program Files\Puppet Labs\Puppet\bin'
|
|
68
|
+
'C:\Program Files\Puppet Labs\Puppet\puppet\bin'
|
|
69
69
|
else
|
|
70
70
|
"/opt/puppetlabs/puppet/bin"
|
|
71
71
|
end
|
|
@@ -88,6 +88,13 @@ module MCollective
|
|
|
88
88
|
end
|
|
89
89
|
end
|
|
90
90
|
|
|
91
|
+
# Is this an AIO install?
|
|
92
|
+
#
|
|
93
|
+
# @return [Boolean]
|
|
94
|
+
def aio?
|
|
95
|
+
File.directory?(aio_bin_path)
|
|
96
|
+
end
|
|
97
|
+
|
|
91
98
|
# Path to the task wrapper executable
|
|
92
99
|
#
|
|
93
100
|
# @return [String]
|
|
@@ -179,6 +186,8 @@ module MCollective
|
|
|
179
186
|
"_choria_task_caller" => task_caller
|
|
180
187
|
}
|
|
181
188
|
|
|
189
|
+
environment["PATH"] = "#{aio_bin_path}#{File::PATH_SEPARATOR}#{ENV['PATH']}" if aio?
|
|
190
|
+
|
|
182
191
|
return environment unless task["input"]
|
|
183
192
|
return environment unless ["both", "environment"].include?(task_input_method(task))
|
|
184
193
|
|
|
@@ -250,7 +259,7 @@ module MCollective
|
|
|
250
259
|
# act on these tasks either by asking for their status or perhaps killing
|
|
251
260
|
# them?
|
|
252
261
|
#
|
|
253
|
-
# @param command [
|
|
262
|
+
# @param command [String] command to run
|
|
254
263
|
# @param environment [Hash] environment to run with
|
|
255
264
|
# @param stdin [String] stdin to send to the command
|
|
256
265
|
# @param spooldir [String] path to the spool for this specific request
|
|
@@ -291,7 +300,7 @@ module MCollective
|
|
|
291
300
|
Process.exec(environment, command, options)
|
|
292
301
|
end
|
|
293
302
|
else
|
|
294
|
-
pid = Process.spawn(environment, command, options)
|
|
303
|
+
pid = Process.spawn(environment, [command, command], options)
|
|
295
304
|
end
|
|
296
305
|
|
|
297
306
|
sleep 0.1 until File.exist?(wrapper_stdout)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: choria-mcorpc-support
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.25.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- R.I.Pienaar
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-08-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: systemu
|
|
@@ -37,6 +37,9 @@ dependencies:
|
|
|
37
37
|
- - "~>"
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
39
|
version: '0.6'
|
|
40
|
+
- - "<"
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: 0.7.0
|
|
40
43
|
type: :runtime
|
|
41
44
|
prerelease: false
|
|
42
45
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -44,6 +47,9 @@ dependencies:
|
|
|
44
47
|
- - "~>"
|
|
45
48
|
- !ruby/object:Gem::Version
|
|
46
49
|
version: '0.6'
|
|
50
|
+
- - "<"
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: 0.7.0
|
|
47
53
|
description: Libraries enabling Ruby support for the Choria Orchestration Server
|
|
48
54
|
email: rip@devco.net
|
|
49
55
|
executables:
|