#!/bin/sh
#
# Copyright (c) 1994, 1995, 1996 by Sun Microsystems, Inc.
# All Rights Reserved
#
#	@(#)accept	1.2	96/04/22 SMI
#
PATH=/usr/ucb:/bin:/usr/bin:/usr/sbin export PATH
cmd_name=`basename $0`
args=""
destinations=""

#		set variables for command
case $cmd_name in
	accept)
		valid_opts=""
		options="\?"
	;;
	enable)
		valid_opts=""
		options="\?"
	;;
	reject)
		valid_opts="[ -r reason ]"
		options="r:"
	;;
	disable)
		valid_opts="[ -c | -W ] [ -r reason ]"
		options="Wcr:"
	;;
	*)
		gettext "Error: "
		echo -n $cmd_name
		gettext " - invalid name"
		echo
		exit 1
	;;
esac

#		Strip off legal options
while getopts $options arg
do
	case $arg in
	c|W)
		args="${args} -$arg"
	;;
	r)
		args="${args} -$arg \"${OPTARG}\""
	;;
	\?)
		gettext "Usage:	"
		echo -n $cmd_name $valid_opts
		gettext " printer ..."
		echo
		exit 1
	;;
	esac
done
shift `expr $OPTIND - 1`


#		Each destination
for printer in $*
do
	if [ -f /usr/lib/lp/local/$cmd_name -a -d /etc/lp/printers/$printer ]
	then
		destinations="${destinations} ${printer}"
	else
		check=`lpstat -v $printer -L`
		if [ -n "$check" ]
		then
			gettext "Warning: "
			echo -n $printer
			gettext " is remote, $cmd_name has no meaning."
			echo
		fi
	fi
done

if [ -n "$destinations" ]
then
	exec /usr/lib/lp/local/$cmd_name $args $destinations
fi
exit 0
