home *** CD-ROM | disk | FTP | other *** search
- Database
- ----------------------------------------------------------------------------
-
- As supplied, all of the library routines attempt to access a password
- database referenced by <Users$Database>. The ideal placing for the password
- database would be Choices:Users.passwd, or perhaps invididual ones for
- individual programs; Choices:NFSserver.passwd (or whatever). Some example
- script to set this would be something like this:
-
- If "<Choices$Write>" <> "" And "<Users$Database>" = ""
- Then Set Users$Database Choices:Users.passwd
- If "<Choices$Write>" = "" And "<Users$Database>" = ""
- Then Set Users$Database <Prog$Dir>.passwd
-
- The database consists of lines, each of the following format:
-
- username:encrypted-password:realname:uid:gid:home directory
-
- The home directory is allowed to contain `:' characters. All others fields
- are not.
-