If I understand you correctly, you are saying that the users must still be
able to execute the sybase scripts/programs but should not be permitted to
modify them. If that is the case, then you need only ensure that the execute
permissions for the scripts/programs are granted to "other" (o+x).
If these users are currently in the sybase group, then create a new group
or choose a different existing group and for each user run the command
find / -user <userid> -exec chgrp <new group> {} \;
This will ghange the group of all files this user currently owns (so they
can still modify their own stuff) If sybase was the only group the users
belonged to, then you will have to change the group using some like:
chuser pgrp=<new group> userid
You will also want to do this if the users primary group was sybase.
Then you can merely remove the users from the sybase group.
-JAZZ
--
John Jaszczak
Romac International
Assigned to: Harmonic Systems, Inc.
612-321-4139
> I have a few users that are in the "Sybase" group. The Sybase admin wants
>them out. I have to create a new (lower) group and move them into it making
>sure that they can execute the programs they did before, but not be able to
>administer as the sybase group is. Is this where suid comes into play? Can
>someone explain it further to me? These people are pissed that I have to
>make the changes but, I don't have a choice.
>Thanks in advance,
>Tom