Log in to a system in your NIS+ domain as an authorized user with read and write access rights to the group table.
Save the group table to a temporary file.
$ niscat group.org_dir > /var/tmp/group-file |
Edit the file, adding the users you want to authorize to use the Solstice AutoClient software.
The following sample shows users added to the sysadmin entry in the group file.
. . . sysadmin::14:user1,user2,user3 nobody::60001: noaccess::60002: |
In this example,
user1,user2,user3 |
Represent the user IDs you are adding to the sysadmin group. |
Merge the file with the NIS+ group table.
$ /usr/lib/nis/nisaddent -mv -f /var/tmp/group-file group |
The results of the merge are displayed.
Remove the temporary file.
$ rm /var/tmp/group-file |
Verify that the user is a member of the sysadmin group by entering the following commands. Perform this step for each user you added to the file.
# su - user1 $ groups staff sysadmin $ exit |