home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / xwplascr.zip / XWPL0208.ZIP / release / install / xwpusers.xml < prev   
Text File  |  2000-10-24  |  4KB  |  100 lines

  1. <!--
  2.     XWPUSERS:
  3.         this file holds login information for all users
  4.         which are recognized by XWorkplace Security.
  5.         The default version in the install\ subdirectory
  6.         of the XWorkplace installation directory is copied
  7.         to the ?:\OS2 directory.
  8.  
  9.         This file uses an XML-like syntax for user
  10.         specifications.
  11.  
  12.     GROUP SPECIFICATIONS
  13.  
  14.         GROUP
  15.                 GROUPID=id
  16.         groupname /GROUP
  17.     -->
  18.  
  19. <GROUP
  20.     GROUPID=0
  21. >root</GROUP>
  22.  
  23. <GROUP
  24.     GROUPID=1
  25. >admin</GROUP>
  26.  
  27. <GROUP
  28.     GROUPID=2
  29. >users</GROUP>
  30.  
  31. <GROUP
  32.     GROUPID=3
  33. >special</GROUP>
  34.  
  35. <!--
  36.  
  37.     USER SPECIFICATIONS
  38.  
  39.         USER
  40.                 NAME="username"
  41.                 USERID=id
  42.                 PASS="password"
  43.                 GROUPID="id[,id...]
  44.                 [HOMEDIR="x:\homedirspec"]
  45.                 [USERINI="x:\path\xxx.ini"]
  46.                 [XWPSHELL="[path]\xxx.exe"]
  47.                 [COMSPEC="[path]\xxx.exe"]
  48.         Real Name /USER
  49.  
  50.         The following are required for each user:
  51.  
  52.         NAME="username"     the user name (login).
  53.         USERID=id           the decimal user ID for this user. This must be
  54.                             unique.
  55.         PASS="password"     the user's password.
  56.         GROUPID="id[,id...]" the ID (or ID's) of the group(s) this user belongs
  57.                             to. This references one of the GROUP tags. There
  58.                             must be at least one group, but the user may belong
  59.                             to several.
  60.                             Note: This is different from UNIX. There, each user
  61.                             has a "primary" group and can belong to several
  62.                             others as well, but only the primary group is
  63.                             specified in /etc/passwd.
  64.  
  65.         The following are optional for each user:
  66.  
  67.         HOMEDIR=dir         full path specification of the home directory.
  68.                             If this is not specified, this defaults to
  69.                             $(XWPHOME)\username. If XWPHOME is not specified
  70.                             in CONFIG.SYS, XWPHOME defaults to ?:\home on the
  71.                             boot drive.
  72.         USERINI=ini         full path specification of the user profile (OS2.INI)
  73.                             for this user. If this is not specified, this defaults
  74.                             to OS2.INI in the home directory (except for "root").
  75.                             By specifying the same OS2.INI for several users,
  76.                             several users can share the same desktop directory.
  77.         XWPSHELL=exe        shell to use for this user. If this is not specified,
  78.                             this defaults to $(XWPSHELL). If XWPSHELL is not
  79.                             specified in CONFIG.SYS, XWPSHELL defaults to
  80.                             ?:\OS2\PMSHELL.EXE on the boot drive.
  81.                             If the executable is on the PATH, the full path can
  82.                             be omitted.
  83.         OS2_SHELL=exe       command processor to use for command shells. If this
  84.                             is not specified, $(OS2_SHELL) is used, which is normally
  85.                             specified in CONFIG.SYS. If that is not specified either,
  86.                             ?:\OS2\CMD.EXE on the boot drive is used.
  87.  
  88.         Note that there is no way to specify the desktop directory through this file
  89.         since the user's OS2.INI will rely on that.
  90.     -->
  91.  
  92. <USER
  93.     NAME="root"
  94.     USERID=0
  95.     PASS="pass"
  96.     GROUPID=0
  97. >root</USER>
  98.  
  99.  
  100.