mixlib-shellout 2.0.0.rc.0 → 2.0.0.rc.1
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/mixlib/shellout/unix.rb +4 -1
- data/lib/mixlib/shellout/version.rb +1 -1
- metadata +15 -11
- checksums.yaml +0 -7
data/lib/mixlib/shellout/unix.rb
CHANGED
@@ -280,7 +280,10 @@ module Mixlib
|
|
280
280
|
# support the "ONESHOT" optimization (where sh -c does exec without
|
281
281
|
# forking). To support cleaning up all the children, we need to
|
282
282
|
# ensure they're in a unique process group.
|
283
|
-
|
283
|
+
# We cannot use setsid here since getpgid fails on AIX with EPERM
|
284
|
+
# when parent and child have different sessions and the parent tries to get the process group,
|
285
|
+
# hence we just create a new process group, and have the same session.
|
286
|
+
Process.setpgrp
|
284
287
|
|
285
288
|
configure_subprocess_file_descriptors
|
286
289
|
|
metadata
CHANGED
@@ -1,27 +1,30 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mixlib-shellout
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.0.rc.
|
4
|
+
version: 2.0.0.rc.1
|
5
|
+
prerelease: 6
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Opscode
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date: 2014-
|
12
|
+
date: 2014-10-27 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: rspec
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
16
18
|
requirements:
|
17
|
-
- -
|
19
|
+
- - ~>
|
18
20
|
- !ruby/object:Gem::Version
|
19
21
|
version: '2.0'
|
20
22
|
type: :development
|
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: '2.0'
|
27
30
|
description: Run external commands on Unix or Windows
|
@@ -34,33 +37,34 @@ extra_rdoc_files:
|
|
34
37
|
files:
|
35
38
|
- LICENSE
|
36
39
|
- README.md
|
37
|
-
- lib/mixlib/shellout.rb
|
38
40
|
- lib/mixlib/shellout/exceptions.rb
|
39
41
|
- lib/mixlib/shellout/unix.rb
|
40
42
|
- lib/mixlib/shellout/version.rb
|
41
|
-
- lib/mixlib/shellout/windows.rb
|
42
43
|
- lib/mixlib/shellout/windows/core_ext.rb
|
44
|
+
- lib/mixlib/shellout/windows.rb
|
45
|
+
- lib/mixlib/shellout.rb
|
43
46
|
homepage: http://wiki.opscode.com/
|
44
47
|
licenses: []
|
45
|
-
metadata: {}
|
46
48
|
post_install_message:
|
47
49
|
rdoc_options: []
|
48
50
|
require_paths:
|
49
51
|
- lib
|
50
52
|
required_ruby_version: !ruby/object:Gem::Requirement
|
53
|
+
none: false
|
51
54
|
requirements:
|
52
|
-
- -
|
55
|
+
- - ! '>='
|
53
56
|
- !ruby/object:Gem::Version
|
54
57
|
version: 1.9.3
|
55
58
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
59
|
+
none: false
|
56
60
|
requirements:
|
57
|
-
- -
|
61
|
+
- - ! '>'
|
58
62
|
- !ruby/object:Gem::Version
|
59
63
|
version: 1.3.1
|
60
64
|
requirements: []
|
61
65
|
rubyforge_project:
|
62
|
-
rubygems_version:
|
66
|
+
rubygems_version: 1.8.29
|
63
67
|
signing_key:
|
64
|
-
specification_version:
|
68
|
+
specification_version: 3
|
65
69
|
summary: Run external commands on Unix or Windows
|
66
70
|
test_files: []
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: 7c7f86dabbc8eb901fd99b2b108d6a982f215634
|
4
|
-
data.tar.gz: 5cb4cf1f5bf05a59e4c04a56d96c8824ae5f8181
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: 65907c5565d8ee66d5ddbfbb83c90b172c71776acbc72f912162cd6d73c8e36523342e7072cfba1638e51bafd8e974ccef4c7d9b9794118eded7b38535a6afc6
|
7
|
-
data.tar.gz: cce9aae67fe8bb31372759f6fd64a78dd4166d2a150dd7d79f95ed41b942393af654f3f8f9e52498664100b2190e68ef0d675fa47856107995e301ccd0329aa0
|