I'm using the module https://github.com/sansnoc/puppet/tree/master/users
but running into a problem where puppet can't find a class.  In /etc/
puppet/manifests/nodes.pp I have

node basenode {
   include hosts
   include groups::namidev
   include users::people
   include users::namidev
}
node 'util1.foo.com' inherits basenode {
}

In /etc/puppet/modules/users/manifests/init.pp I have

class groups::namidev {
    @group { "namidev":  ensure => present, gid => "2001", }
}
class users::namidev {
    Useraccount <| pgroup == namidev |>
}

users::namidev is located fine, but not groups::namidev.  What am I
doing wrong?

-- 
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