[Pkg-puppet-devel] [SCM] Puppet packaging for Debian branch, upstream, updated. 0.25.4-89-gcbbd363

James Turnbull james at lovedthanlost.net
Tue May 18 09:03:51 UTC 2010


The following commit has been merged in the upstream branch:
commit d561a988c53d521d0fecf06c4f4d8a65267ac005
Author: Martin Englund <martin at englund.nu>
Date:   Tue Mar 23 12:04:27 2010 +0100

    Fix for #3412 install.rb should not put "." first in the tmp_dirs
    
    Signed-off-by: Martin Englund <martin at englund.nu>

diff --git a/install.rb b/install.rb
index 30f1d32..4da92d9 100755
--- a/install.rb
+++ b/install.rb
@@ -238,7 +238,7 @@ def prepare_installation
     opts.parse!
   end
 
-  tmpdirs = [".", ENV['TMP'], ENV['TEMP'], "/tmp", "/var/tmp"]
+  tmpdirs = [ENV['TMP'], ENV['TEMP'], "/tmp", "/var/tmp", "."]
 
   version = [Config::CONFIG["MAJOR"], Config::CONFIG["MINOR"]].join(".")
   libdir = File.join(Config::CONFIG["libdir"], "ruby", version)

-- 
Puppet packaging for Debian



More information about the Pkg-puppet-devel mailing list