[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:32 UTC 2009


The following commit has been merged in the master branch:
commit e542f8c6fbfb5ae5eead9d5744667bd6840159f7
Author: James Turnbull <james at lovedthanlost.net>
Date:   Tue Oct 28 15:57:03 2008 +1100

    Fixed #1692 - k5login fails to set mode when file is created

diff --git a/CHANGELOG b/CHANGELOG
index 83b9840..0dcfcbd 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,6 @@
 0.24.x
+    Fixed 1692 - k5login fails to set mode when file is created
+
     Fixed #1660 - Added specific recurse values for tidy
 
     Fixed #1698 - All logs should now show up in the reports
diff --git a/lib/puppet/type/k5login.rb b/lib/puppet/type/k5login.rb
index 2372f65..d22be11 100644
--- a/lib/puppet/type/k5login.rb
+++ b/lib/puppet/type/k5login.rb
@@ -46,7 +46,7 @@ Puppet::Type.newtype(:k5login) do
             write(@resource.should(:principals))
             should_mode = @resource.should(:mode)
             unless self.mode == should_mode
-                self.mode  should_mode
+                self.mode = should_mode
             end
         end
 

-- 
Puppet packaging for Debian



More information about the Pkg-puppet-devel mailing list