home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / base / root.15 / etc / default / usermod / usermod~
Text File  |  1998-08-19  |  2KB  |  38 lines

  1. #ident    "@(#)usermod.dfl    1.2"
  2.  
  3. # This file contains the list of files/directories that usermod will
  4. # search when the -U option is used.  The files/directories to be 
  5. # searched are specified by the $LOCAL_PATH and $REMOTE_PATH variables.
  6. # These variables consist of complete path names separated by colons.
  7. # The purpose of the search is to chown files currently belonging to 
  8. # the specified user to the new uid for that user.
  9. #
  10. # Only files/directories belonging to the specified user will be chown'd;
  11. # other files/directories in the search path will be unchanged.  All 
  12. # files and directories under a specified directory are examined.
  13. #
  14. # If a pathname ends with "{login}",  "{login}" is translated by usermod
  15. # to the logname of the user whose uid is being changed.  For example,
  16. # the default value of MAILDIR is /var/mail/{login}.  For the command
  17. # "usermod -u 123 -U foo", the result will be that the file /var/mail/foo
  18. # will be chown'd to belong to uid 123 (and, of course, logname foo will
  19. # have uid 123 as well).
  20. #
  21. # The files/directories specified by $LOCAL_PATH will not be followed 
  22. # to remote machines but the files/directories specified by $REMOTE_PATH 
  23. # will be followed to remote machines.  For example, if $HOMEPATH is in
  24. # the list specified by $LOCAL_PATH and $HOMEPATH=/home/{login}, then
  25. # for the command "usermod -u 123 -U foo", all files and directories 
  26. # belonging to logname foo under /home/foo and residing on the local
  27. # machine will be chown'd to belong to uid 123 which will be foo's new uid.
  28.  
  29. HOMEDIR=${HOMEDIR:=/home}
  30. HOMEPATH=$HOMEDIR/{login}
  31. MAILDIR=/var/mail/{login}
  32. MAILFORWARD=/var/mail/:forward/{login}
  33. UUCPDIR=/var/spool/uucppublic/receive/{login}
  34. PRESERVEDIR=/var/preserve
  35.  
  36. LOCAL_PATH=$HOMEPATH:$MAILDIR:$MAILFORWARD:$UUCPDIR:$PRESERVEDIR
  37. REMOTE_PATH=
  38.