home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Security / lpr-wrapper-1.0.1-MIHS / lpr-wrapper.pkg / lpr-wrapper.post_install < prev    next >
Encoding:
Text File  |  1997-06-26  |  372 b   |  21 lines

  1. #!/bin/sh
  2. #
  3. # Written by TjL <luomat@peak.org>
  4. #
  5. # Generous help, corrections, and suggestions 
  6. # by Rex Dieter <rdieter@math.unl.edu>
  7. #
  8. #
  9. # This script operates after the lpr has been installed
  10. # and makes sure that the new wrapper has the right
  11. # ownership and permissions
  12.  
  13.  
  14. /etc/chown root.daemon     /usr/ucb/lpr
  15.     
  16. chmod 4711 /usr/ucb/lpr
  17. chmod g+s /usr/ucb/lpr
  18.  
  19. exit 0
  20.  
  21.