From 84d6637cfc47a14114493254ec8e68f2887a93d8 Mon Sep 17 00:00:00 2001 From: James Turnbull Date: Mon, 9 Mar 2009 14:46:46 +1100 Subject: Fixed #2000 - No default specified for checksum --- CHANGELOG | 2 ++ lib/puppet/type/file/checksum.rb | 8 +++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 42bfe71fc..4d5b05f40 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,6 @@ 0.24.8 + Fixed #2000 - No default specified for checksum + Fixed #2026 - Red Hat ignoring stop method Added ext/dbfix.sql script - fixes common errors in stored configuration databases diff --git a/lib/puppet/type/file/checksum.rb b/lib/puppet/type/file/checksum.rb index f681a8ebe..095c62f37 100755 --- a/lib/puppet/type/file/checksum.rb +++ b/lib/puppet/type/file/checksum.rb @@ -11,7 +11,13 @@ Puppet::Type.type(:file).newproperty(:checksum) do like Tripwire without managing the file contents in any way. You can specify that a file's checksum should be monitored and then subscribe to the file from another object and receive events to signify - checksum changes, for instance." + checksum changes, for instance. + + There are a number of checksum types available including MD5 hashing (and + an md5lite variation that only hashes the first 500 characters of the + file. + + The default checksum parameter, if checksums are enabled, is md5." @event = :file_changed -- cgit