On Aug 14, 2005 at 11:04, Marco d'Itri praised the llamas by saying:
> On Aug 14, [EMAIL PROTECTED] wrote:
> 
> > system. As a result, udevstart exits before it has completely populated
> > /dev/ during startup.
> What makes you believe this? Look at lookup_group() in
> udev_libc_wrapper.c, the function never fails:
> 
> gid_t lookup_group(const char *group)
> {
>         struct group *gr;
>         gid_t gid = 0;
> 
>         gr = getgrnam(group);
>         if (gr == NULL)
>                 dbg("specified group unknown '%s'", group);
>         else
>                 gid = gr->gr_gid;
> 
>         return gid;
> }
> 

Extensive debugging. udevstart crashed trying to look up the group.
Creating the nvram system group fixed it. It's entirely possible that
the crash is due to libnss-ldap, but that doesn't change the fact that
you are relying in a group which you haven't created.


-- 
David Pashley
[EMAIL PROTECTED]
Nihil curo de ista tua stulta superstitione.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to