From 31c185954062b6f15e7f8747312dcb940b7bbdf6 Mon Sep 17 00:00:00 2001 From: "Leigh B. Stoller" <stoller@flux.utah.edu> Date: Thu, 11 Jan 2007 00:54:27 +0000 Subject: [PATCH] Hmm, the default group for a project has to have the same idx as the project. Or put a better way, when pid=gid then have to set pid_idx=gid_idx to keep everyone happy. --- utils/firstuser.in | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/utils/firstuser.in b/utils/firstuser.in index be070104d3..067796b1cf 100755 --- a/utils/firstuser.in +++ b/utils/firstuser.in @@ -129,9 +129,6 @@ while (getpwuid($uid)) { $uid++; } my $gid = $MINGID; while (getgrgid($gid)) { $gid++; } -my $ggid = $gid + 1; -while (getgrgid($ggid)) { $ggid++; } - # We put the proto-user in the tbadmin group, because the emulab-ops # group does not exist yet my $agid = (getgrnam($tbadmin))[2]; @@ -193,7 +190,8 @@ if (!defined($opts{u})) { DBQueryFatal("insert into groups set pid='$protoproj', gid='$protoproj', ". "leader='$protouser', created=now(), ". "description='Default Group', " . - "unix_gid=$ggid, gid_idx=$ggid, unix_name='$protoproj'"); + "unix_gid=$gid, gid_idx=$gid, pid_idx=$gid, ". + "unix_name='$protoproj'"); DBQueryFatal("insert into group_stats set ". "pid='$protoproj',gid='$protoproj',gid_idx=$gid"); -- GitLab