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 / groupadd.local < prev    next >
Text File  |  2010-05-08  |  554b  |  30 lines

  1. #!/bin/bash
  2. #
  3. # Here you can add your own stuff, that should be done for every
  4. # group which was new created.
  5. #
  6. # When you create a group with groupadd, this script will be called
  7. # with the group name and GID as parameter.
  8. #
  9.  
  10. case "$1" in
  11.    --help|--version)
  12.      echo Usage: $0 group gid
  13.      exit 0
  14.      ;;
  15. esac
  16.  
  17. # Check for the required argument.
  18. # Allow 3 arguments, groupadd can also add UID of calling process.
  19. if [ $# -lt 2 -o $# -gt 3 ]; then
  20.   echo Usage: $0 group gid
  21.   exit 1
  22. fi
  23.  
  24. # Update NIS database
  25. # make -C /var/yp
  26.  
  27. # All done.
  28. exit 0
  29.  
  30.