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


The following commit has been merged in the master branch:
commit 2b4aa0c442f40125526cf2a19c15af4908684388
Author: James Turnbull <james at lovedthanlost.net>
Date:   Thu Oct 9 07:58:26 2008 +1100

    Fixed #1639 - uninitialized constant Puppet::Type::User::ProviderUseradd

diff --git a/CHANGELOG b/CHANGELOG
index 510caf5..d76604f 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,6 @@
 0.24.6
+    Fixed #1639 - uninitialized constant Puppet::Type::User::ProviderUseradd
+
     Fixed #1637 - With an inexistant (global) templatedir, modules 
     can't access their templates
 
diff --git a/lib/puppet/provider/user/user_role_add.rb b/lib/puppet/provider/user/user_role_add.rb
index 23581ab..819516d 100644
--- a/lib/puppet/provider/user/user_role_add.rb
+++ b/lib/puppet/provider/user/user_role_add.rb
@@ -1,6 +1,6 @@
 require 'puppet/util/user_attr'
 
-Puppet::Type.type(:user).provide :user_role_add, :parent => Puppet::Type::User::ProviderUseradd do
+Puppet::Type.type(:user).provide :user_role_add, :parent => :useradd do
 
     desc "User management inherits ``useradd`` and adds logic to manage roles on Solaris using roleadd."
 

-- 
Puppet packaging for Debian



More information about the Pkg-puppet-devel mailing list