[Pkg-puppet-devel] [SCM] Puppet packaging for Debian branch, upstream, updated. 0.25.5-639-g8f94f35
test branch
puppet-dev at googlegroups.com
Wed Jul 14 10:31:30 UTC 2010
The following commit has been merged in the upstream branch:
commit e6a720b67abc16e0a008021b8192f84c11060635
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