#!/bin/sh
#
#
# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
# ident	"@(#)ppd-cache-update	1.1	07/11/09 SMI"

. /lib/svc/share/smf_include.sh

case "$1" in
'start')
	if [ -x /usr/sbin/ppdmgr ] ; then
		/usr/sbin/ppdmgr -u -R all -L all
	fi
	;;
*)
	echo "Usage: $0 start"
	exit 1
	;;
esac
exit $SMF_EXIT_OK
