Re: fixes for delgroup

1997-05-15 Thread George Bonser
> > > Was: > > > > $GID='id -g mail' > > > > changed to > > > > GID=$(id -d mail) > > > > (which really makes no sense unless the author wants to pick a "safe" > > GID. but I did not look into it any deeper ... the script appears to run > > now). ment -g typed -d ... it was a long night. G

Re: fixes for delgroup

1997-05-15 Thread J . R . Blaakmeer
On Wed, 14 May 1997, George Bonser wrote: > I fixed a couple of things in /usr/sbin/delgroup (but did not save the > file first so I could make a diff). The changes are minor and at the top > of the file. > > was: > > if [ -f /etc/gtmp]; > > changed to: > > if [-f /etc/gtmp]; then You're rig

fixes for delgroup

1997-05-14 Thread George Bonser
I fixed a couple of things in /usr/sbin/delgroup (but did not save the file first so I could make a diff). The changes are minor and at the top of the file. was: if [ -f /etc/gtmp]; changed to: if [-f /etc/gtmp]; then Was: $GID='id -g mail' changed to GID=$(id -d mail) (which really mak