diff options
-rw-r--r-- | CHANGELOG | 12 | ||||
-rw-r--r-- | lib/puppet/util.rb | 1 |
2 files changed, 11 insertions, 2 deletions
@@ -1,8 +1,16 @@ 0.24.x + Fixed issues with file descriptors leaking into subprocesses + + Fixed #1568 - createpackage.sh + + Fixed #1571 - Puppet::Util::binary returns incorrect results + + Fixed #1553 - Puppet and Facter cannot both install the plist module into two different locations + + Adjusted hpuxuseradd user provider to confine to HP-UX and fixed HP-UX user provider path regression + Fixed debug messages in package type - thanks to Todd Zullinger for this fix - Adjusted hpuxuseradd user provider to confine to HP-UX - Fixed #1566 - changed password property of the user type Fixed debug messages in package type diff --git a/lib/puppet/util.rb b/lib/puppet/util.rb index ff9858ed0..d6de3e2e1 100644 --- a/lib/puppet/util.rb +++ b/lib/puppet/util.rb @@ -316,6 +316,7 @@ module Util $stdin.reopen("/dev/null") $stdout.reopen(output_file) $stderr.reopen(output_file) + 3.upto(256){|fd| IO::new(fd).close rescue nil} if arguments[:gid] Process.egid = arguments[:gid] Process.gid = arguments[:gid] unless @@os == "Darwin" |