home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- #
- # Written by TjL <luomat@peak.org>
- #
- # Generous help, corrections, and suggestions
- # by Rex Dieter <rdieter@math.unl.edu>
- #
- #
- # This script operates after the lpr has been installed
- # and makes sure that the new wrapper has the right
- # ownership and permissions
-
-
- /etc/chown root.daemon /usr/ucb/lpr
-
- chmod 4711 /usr/ucb/lpr
- chmod g+s /usr/ucb/lpr
-
- exit 0
-
-