faxsetup.linux.in
上传用户:weiyuanprp
上传日期:2020-05-20
资源大小:1169k
文件大小:3k
源码类别:

传真(Fax)编程

开发平台:

C/C++

  1. #! @SCRIPT_SH@
  2. # $Id: faxsetup.linux.in,v 1.1 2008/01/18 19:28:13 faxguy Exp $
  3. #
  4. # HylaFAX Facsimile Software
  5. #
  6. # Copyright (c) 1995-1996 Sam Leffler
  7. # Copyright (c) 1995-1996 Silicon Graphics, Inc.
  8. # HylaFAX is a trademark of Silicon Graphics
  9. # Permission to use, copy, modify, distribute, and sell this software and 
  10. # its documentation for any purpose is hereby granted without fee, provided
  11. # that (i) the above copyright notices and this permission notice appear in
  12. # all copies of the software and related documentation, and (ii) the names of
  13. # Sam Leffler and Silicon Graphics may not be used in any advertising or
  14. # publicity relating to the software without the specific, prior written
  15. # permission of Sam Leffler and Silicon Graphics.
  16. # THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  17. # EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  18. # WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  19. # IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  20. # ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  21. # OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  22. # WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  23. # LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  24. # OF THIS SOFTWARE.
  25. #
  26. #
  27. # Linux-specific definitions for faxsetup.
  28. #
  29. addPasswd()
  30. {
  31.     # We're probably creating a user with the same uid as another,
  32.     # so we need to use 'useradd -o' if available.  Also, some
  33.     # useradds copy a number of "dot" files when creating the home
  34.     # directory, so if available, '-M' prevents that, and if it is
  35.     # an invalid option, then simply not using '-m' will usually 
  36.     # do the trick.  We have to watch the exit status of this script,
  37.     # so, the last command run should have somthing to do with the valid
  38.     # creation of the "fax" user.
  39.     if [ -z "`useradd 2>&1 | grep -- -o`" ]; then
  40.         # useradd does *not* support the -o option
  41.         useradd -c 'Facsimile Agent' -d $4 -s /bin/false $1;
  42.         usermod -u $2 -o -g $3 $1;
  43.     elif [ -z "`useradd -M 2>&1 | grep -E 'invalid|illegal'`" ]; then
  44.         # useradd supports the -M option
  45.         useradd -M -c 'Facsimile Agent' -d $4 -u $2 -o -g $3 -s /bin/false $1;
  46.     else
  47.         # useradd does *not* support the -M option
  48.         useradd -c 'Facsimile Agent' -d $4 -u $2 -o -g $3 -s /bin/false $1;
  49.     fi
  50. }
  51. deletePasswd()
  52. {
  53.     userdel -r $1
  54. }
  55. lockPasswd()
  56. {
  57.     return 0
  58. }
  59. modifyPasswd()
  60. {
  61.     usermod -d $4 -m -u $2 -o -g $3 $1
  62. # NB: we must do it twice to keep Linux happy if the
  63. #     home directory allready exists
  64.     usermod -d $4 -m -u $2 -o -g $3 $1
  65. }