[Suns-at-Home] Exporting a low gid group through NIS

Mauricio Tavares raub@ufl.edu
Wed, 20 Sep 2006 08:23:39 -0400


Mauricio Tavares wrote:
>     For many reasons (primarily because that is the way it was setup and a
> change would be a very major ordeal), I need to export through the NIS
> groups map a group with a low group ID (190). Am I correct to assume
> that by default the /var/yp/Makefile will not let me do that? If that is
> the case, what would be the most painless way to export it?
>
	Solved the problem: first this is in Linux, not in Solaris (which does 
not seem to care about the gid of each group entry in its group map). 
That said, on the beginning of /var/yp/Makefile something called MINGID, 
the lowest gid that will be included in the group maps.  All I had to do 
was to change it from

MINGID=500

to

MINGID=190 


and all was well.  Thanks for all the help!