[Pkg-puppet-devel] [SCM] Puppet packaging for Debian branch, master, updated. debian/0.24.6-1-356-g5718585
James Turnbull
james at lovedthanlost.net
Fri Jan 23 14:21:34 UTC 2009
The following commit has been merged in the master branch:
commit 56f3be66a437f5c2c60187d34681813ec7246228
Author: James Turnbull <james at lovedthanlost.net>
Date: Wed Oct 29 14:36:20 2008 +1100
Fixed #1710 - Spurious output in test run
diff --git a/CHANGELOG b/CHANGELOG
index 1b828d1..441c5ec 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,6 @@
0.24.x
+ Fixed #1710 - Spurious output in test run
+
Fixed #1667 - Documentation should specify natural language regexs, not Regexp objects
Fixed #1692 - k5login fails to set mode when file is created
diff --git a/test/certmgr/support.rb b/test/certmgr/support.rb
index 10d4319..d418c67 100755
--- a/test/certmgr/support.rb
+++ b/test/certmgr/support.rb
@@ -86,17 +86,11 @@ class TestCertSupport < Test::Unit::TestCase
# Write a key out to disk in a file containing upper-case.
key = OpenSSL::PKey::RSA.new(32)
should_path = Puppet[:hostprivkey]
- puts "%s: %s" % [should_path, FileTest.exist?(should_path).inspect]
dir, file = File.split(should_path)
newfile = file.sub(/^([a-z.]+)\./) { $1.upcase + "."}
- puts "%s: %s" % [should_path, FileTest.exist?(should_path).inspect]
upper_path = File.join(dir, newfile)
- puts "%s: %s" % [should_path, FileTest.exist?(should_path).inspect]
- puts "%s: %s" % [upper_path, FileTest.exist?(upper_path).inspect]
File.open(upper_path, "w") { |f| f.print key.to_s }
- puts "%s: %s" % [should_path, FileTest.exist?(should_path).inspect]
- puts "%s: %s" % [upper_path, FileTest.exist?(upper_path).inspect]
user = CertUser.new
--
Puppet packaging for Debian
More information about the Pkg-puppet-devel
mailing list