#!/usr/bin/ksh
#
# ident	"@(#)getmakes	1.1	04/04/13 SMI"
#
# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#

#
# get a list of the Manufacturers from the ppdcache
#

if [[ -f /usr/lib/lp/model/ppd/ppdcache ]]; then
	/bin/cat /usr/lib/lp/model/ppd/ppdcache |
			nawk '{FS=":"; print $1}' |
			nawk '{print $1}' |
			/bin/sort -u
			
	exit 0
else
	exit 1
fi
