[Pkg-puppet-devel] [SCM] Puppet packaging for Debian branch, upstream, updated. 0.25.5-639-g8f94f35
Markus Roberts
Markus at reality.com
Wed Jul 14 10:35:30 UTC 2010
The following commit has been merged in the upstream branch:
commit b4af2380f45a68830e47c8995b10474f512e67a4
Author: Markus Roberts <Markus at reality.com>
Date: Sat Jun 26 10:04:09 2010 -0700
Fix for #3985 typo causing warning
There was a comma missing from a raise, which caused a warning message on each run.
diff --git a/lib/puppet/feature/base.rb b/lib/puppet/feature/base.rb
index 0ca408c..2bdff3f 100644
--- a/lib/puppet/feature/base.rb
+++ b/lib/puppet/feature/base.rb
@@ -44,7 +44,7 @@ end
# We can use Win32 functions
Puppet.features.add(:win32, :libs => ["sys/admin", "win32/process", "win32/dir"])
-raise Puppet::Error "Cannot determine basic system flavour" unless Puppet.features.posix? or Puppet.features.win32?
+raise Puppet::Error,"Cannot determine basic system flavour" unless Puppet.features.posix? or Puppet.features.win32?
# We have CouchDB
Puppet.features.add(:couchdb, :libs => ["couchrest"])
--
Puppet packaging for Debian
More information about the Pkg-puppet-devel
mailing list