#! /bin/sh
#
# @(#)getPSdesc	1.2	LPS_UNX_COM	2/19/95
#
# Copyright 1994   Digital Equipment Corporation, Maynard, MA
#
# Return the standard description string for the target printer model.
#
# Parameters:
#    $1 - Printer model (eg, "LPS17", "LPS32", etc)
#
# Exit values:
#    0 - Success, stdout contains the description string.
#    1 - Error or interruption occurred, error messages go to stderr,
#	 contents of stdout are undefined.
###

MODEL="$1"

case "$MODEL" in
	LPS17 ) DESC="17" ;;
	LPS20 ) DESC="20" ;;
	LPS32 ) DESC="32" ;;
	LPS40 ) DESC="40" ;;
	    * ) DESC="$MODEL" ;;
esac

DESC="PrintServer $DESC Printer"

echo "$DESC"

exit 0
