On Tue, Aug 4, 2009 at 3:44 PM, Larry Ludwig<la...@reductivelabs.com> wrote:
>
>
> Why are you using exec type for user and group, when these types
> already exist?  I didn't read the complete thread so I donno if this

I am still learning.

So I guess I could modify the newuser::newid  like following

class newuser {
            .......
    define newid ( $uid , gid = 1, $passwd, $fullname ) {
                user { $name:
                ensure => present,
                uid     => "$uid",
                gid => "$gid",
                groups => [ "sysadmin" ,  "developr" ]
                comment => "$fullname",
                home => "/export/home/$name",
                password => "$passwd",
                shell => "/bin/bash",
                managehome => "true",
                }
        }
          .........
}

> was discussed.  The exec type should always be used as the last resort.

it is better not to read the whole thread.. since it started with me
being very confused about how
puppet works to now when I have some idea, heh

Now I am studying to see how to create say 50 users on say 100 hosts
using external node.

>
> -L
>
> --
> Larry Ludwig
> Reductive Labs
>
>
> >
>



-- 
Asif Iqbal
PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?

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