[9089] | 1 | #!/bin/sh |
---|
| 2 | # Copyright 1985,1987 (C) Adobe Systems Incorporated. All rights reserved. |
---|
| 3 | # GOVERNMENT END USERS: See notice of rights in Notice file in release directory. |
---|
| 4 | # PostScript is a registered trademark of Adobe Systems Incorporated |
---|
| 5 | # TranScript is a registered trademark of Adobe Systems Incorporated |
---|
| 6 | # RCSID: $Header: /afs/dev.mit.edu/source/repository/third/transcript/src/printer.bsd,v 1.1.1.1 1996-10-07 20:25:49 ghudson Exp $ |
---|
| 7 | |
---|
| 8 | # this is a shell script that gets "sourced" when installing |
---|
| 9 | # PostScript printers for use with TranScript software |
---|
| 10 | # this one is used with 4.2bsd based UNIX systems, |
---|
| 11 | # printer.sysv is used with System V based UNIX systems. |
---|
| 12 | |
---|
| 13 | # SPOOLUSER SPOOLGROUP |
---|
| 14 | # group and user id of the line printer spooler and associated |
---|
| 15 | # directories. On 4.2 systems, these are both "daemon" by default |
---|
| 16 | # (though the documentation mentions group "printing"). |
---|
| 17 | |
---|
| 18 | SPOOLUSER=daemon |
---|
| 19 | SPOOLGROUP=daemon |
---|
| 20 | |
---|
| 21 | # SPOOLDIR is the top-level spooling directory |
---|
| 22 | # On 4.2 systems, a printer-specific directory SPOOLDIR/PRINTER |
---|
| 23 | # will be created and used. |
---|
| 24 | SPOOLDIR=/usr/spool |
---|
| 25 | |
---|
| 26 | # LOGDIR |
---|
| 27 | # place where printer log files are kept |
---|
| 28 | # this should be either /usr/adm or, if you want |
---|
| 29 | # them kept within the printer spool directory |
---|
| 30 | # use the line |
---|
| 31 | # LOGDIR=${SPOOLDIR}/${PRINTER} |
---|
| 32 | # don't worry that PRINTER is not defined here, if will |
---|
| 33 | # get defined before this script is run |
---|
| 34 | LOGDIR=/usr/adm |
---|
| 35 | |
---|
| 36 | # ACCTDIR |
---|
| 37 | # place where printer accounting files are kept. Each file |
---|
| 38 | # will be named "ACCTDIR/PRINTER.acct". |
---|
| 39 | ACCTDIR=/usr/adm |
---|
| 40 | |
---|
| 41 | export SPOOLUSER SPOOLGROUP SPOOLDIR LOGDIR ACCTDIR |
---|