home *** CD-ROM | disk | FTP | other *** search
/ tusportal.tus.k12.pa.us / tusportal.tus.k12.pa.us.tar / tusportal.tus.k12.pa.us / Wyse / latest-image.raw / 0.img / usr / sbin / userdel-post.local < prev    next >
Text File  |  2010-05-08  |  623b  |  31 lines

  1. #!/bin/bash
  2. #
  3. # Here you can add your own stuff, that should be done for every user
  4. # which we deleted.
  5. #
  6. # If you delete a user with userdel, this script will be called
  7. # with the login name, UID, GID and the HOME directory as parameter
  8. # after the account and optional home directory was removed from the
  9. # system.
  10. #
  11.  
  12. case "$1" in
  13.    --help|--version)
  14.      echo Usage: $0 username uid gid home
  15.      exit 0
  16.      ;;
  17. esac
  18.  
  19. # Check for the required argument.
  20. if [ $# != 4 ]; then
  21.   echo Usage: $0 username uid gid home
  22.   exit 1
  23. fi
  24.  
  25. # Rebuild NIS database to remove the account from it.
  26. # make -C /var/yp
  27.  
  28. # All done.
  29. exit 0
  30.  
  31.