Hi all

I am using puppet 0.24.7 on Centos 5.2 and am attempting to set up users
in LDAP via puppet. I am getting an error msg that says

err: Got an uncaught exception of type NoMethodError: undefined method
`join' for :absent:Symbol

on the second run of puppetd. First time through I run

puppetd --test --tags users

and it works and sets up the users "opt-query" and "opt-arch" in my LDAP
directory. If I then run the exact same command again then it fails with
the error above. Here's a simplified test case of what I have set up and
it fails for me using this. It appears to be something to do with the
multiple groups specified for the opt-arch user - do I have a mistake in
the way I have this set up in the define?

define ldapuser
        (
        $uid,
        $groups,
        $home,
        $shell
        )
        {
        group {"$title":
                gid => $uid,
                provider => "ldap",
                ensure => present
                }
        user {"$title":
                comment => "$title",
                ensure => present,
                groups => [ "$groups" ],
                gid => "$uid",
                home => "$home",
                managehome => "false",
                provider => "ldap",
                shell => "$shell",
                uid => "$uid",
                require => Group["$title"]
                }
        }

class users
        {
        ldapuser {"opt-query":
                home => "/some/dir/here",
                shell => "/sbin/nologin",
                uid => "506",
                groups => ["opt-query"]
                }
        ldapuser {"opt-arch":
                home => "/some/dir/here",
                shell => "/sbin/nologin",
                uid => "507",
                groups => [ "opt-query","opt-arch" ],
                require => [ Ldapuser["opt-query"] ]
                }
    }

-- 

Trevor Hemsley
Infrastructure Engineer
.................................................
* C A L Y P S O
* 4th Floor, Tower Point,
44 North Road,
Brighton, BN1 1YR, UK   

OFFICE  +44 (0) 1273 666 350
FAX     +44 (0) 1273 666 351

.................................................
www.calypso.com

This electronic-mail might contain confidential information intended
only for the use by the entity named. If the reader of this message is
not the intended recipient, the reader is hereby notified that any
dissemination, distribution or copying is strictly prohibited.

* P * /*/ Please consider the environment before printing this e-mail /*/


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to