#! /usr/bin/sh # # ident "%Z%%M% %I% %E% SMI" # # Copyright 2005 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. PKILL_EXEC=/usr/bin/pkill UM_NAME=swupdate.jar NOT_NAME=swupna.jar # if operating on the running system # kill UM process and notification app process if [ "$PKG_INSTALL_ROOT" = "" ] || [ "$PKG_INSTALL_ROOT" = "/" ] ; then $PKILL_EXEC -f $UM_NAME $PKILL_EXEC -f $NOT_NAME fi exit 0