#!/bin/sh
#
# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
# pragma ident	"@(#)preremove.tmpl	1.2	04/08/11 SMI"
#

# If we are removing a "local" version of the package, disable the scheduler.

[ "${PKG_INSTALL_ROOT:-/}" = "/" ] || exit 0

svcprop -q svc:/application/print/server:default || exit 0

/usr/sbin/svcadm disable svc:/application/print/server:default

if [ $? -ne 0 ]; then
        exit 1
fi

exit 0
