- Fix bug which prevents chef-client to run when the terminal used to launch it

is closed.

PR:		190068
Submitted by:	Renaud Chaput <renchap@cocoa-x.com>
Approved by:	maintainer timeout (nickdewing@gmail.com, >2 weeks)
This commit is contained in:
Steve Wills 2014-06-08 13:45:18 +00:00
parent 155d0fc957
commit 60d073d3fc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=357033
2 changed files with 12 additions and 0 deletions

View File

@ -3,6 +3,7 @@
PORTNAME= mixlib-shellout
PORTVERSION= 1.4.0
PORTREVISION= 1
CATEGORIES= devel rubygems
MASTER_SITES= RG

View File

@ -0,0 +1,11 @@
--- lib/mixlib/shellout/unix.rb.bak 2014-05-21 13:10:28.670548925 +0200
+++ lib/mixlib/shellout/unix.rb 2014-05-21 13:10:40.484660467 +0200
@@ -222,7 +222,7 @@
# the ulimit based on platform.
def clean_parent_file_descriptors
# Don't clean $stdin, $stdout, $stderr, process_status_pipe.
- 3.upto(256) do |n|
+ 9.upto(256) do |n|
# We are checking the fd for error pipe before attempting to
# create a file because error pipe will auto close when we
# try to create a file since it's set to CLOEXEC.