Path: utzoo!attcan!utgpu!jarvis.csri.toronto.edu!rutgers!tut.cis.ohio-state.edu!giza.cis.ohio-state.edu!karl From: karl@giza.cis.ohio-state.edu (Karl Kleinpaste) Newsgroups: news.software.b Subject: Re: Problems with NEWSGRP gr entry Message-ID: Date: 21 Jun 89 18:14:20 GMT References: <121@bdofed.UUCP> Sender: news@tut.cis.ohio-state.edu Organization: Ohio State Computer Science Lines: 13 In-reply-to: nickerso@bdofed.UUCP's message of 21 Jun 89 14:44:31 GMT The slice of code which generates this message is (expire.c): if ((gp = getgrnam(NEWSGRP)) == NULL) xerror("Cannot get NEWSGRP gr entry"); dgid = gid = gp->gr_gid; The problem is that NEWSGRP, which is defined in the Makefile as "news" by default, is a group name which is not found in your /etc/group file. You need to have this symbolic group name defined in /etc/group so that this code will successfully acquire the numeric value and can then execute under that ID. --Karl