source: trunk/third/transcript/printer.bsd @ 9090

Revision 9090, 1.5 KB checked in by ghudson, 28 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r9089, which included commits to RCS files with non-trunk default branches.
  • Property svn:executable set to *
Line 
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/printer.bsd,v 1.1.1.1 1996-10-07 20:25:22 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
18SPOOLUSER=daemon
19SPOOLGROUP=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.
24SPOOLDIR=/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
34LOGDIR=/usr/adm
35
36# ACCTDIR
37#       place where printer accounting files are kept.  Each file
38#       will be named "ACCTDIR/PRINTER.acct".
39ACCTDIR=/usr/adm
40
41export SPOOLUSER SPOOLGROUP SPOOLDIR LOGDIR ACCTDIR
Note: See TracBrowser for help on using the repository browser.