Hi all,

I encounter a really strange issue which seems to happen only on
Centos 5 ... which is not the case.

I have a file located in: /etc/puppet/modules/onp_groups/s633.pp:

class onp_groups::s633 {
        group { 's633':
                gid             => 2633,
                members         => $onp_users::s633::members,
        }
}

The variable $onp_users::s633::members, defined on /etc/puppet/modules/
onp_users/s633.pp:

class onp_users::s633 {
        $members = 'speet kevde degay denin vrbro orbaj devaf'
        user { 'devaf':
                uid     => '1024',
                comment => '*********'
                home    => '/home/devaf',
                password => '********',
        }
        ....

My nodes.pp looks like this at the moment:

node 'base_node' {

}

node 'client1.bardack.be' inherits base_node {
        include onp_users, onp_groups::s633
}

On client1:
[root@client1 ~]# puppetd --test
info: Caching catalog for client1.bardack.be
info: /Group[s633]: Provider groupadd does not support features
manages_members; not managing attribute members
info: Applying configuration version '1310387090'
notice: Finished catalog run in 0.11 seconds


I know this bug is known but it is said that it happens only on
previous puppet version (0.25) with Centos 5 only.

I tested on 0.25 with : Centos 5.5, 5.6, Fedora 15, Redhat 5.5
I also tested on 2.6 with: Centos 5.6, Fedora 15, Centos 6.0

Always the same problem ...


I really don't get what I am doing wrong ... Does the 'members' thing
does not work at all or what?

Thanks in advance for any feedback.

Rgrds;

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

Reply via email to