#!/bin/sh
#############################################################################
# Copyright (C)2005, Sun Microsystems Inc. All rights reserved.
# Use is subject to license terms.
#
# Do any cleanup required prior to removing the SCNBase root component.
#
# 1. check PKG_INSTALL_ROOT. If it is set, the package being removed has
#    no components in use on the system: exit immediately.
# 2. otherwise remove the persistence files created by the SCNBase user 
#    component.
#
# pragma ident $Id: preremove,v 1.1 2005/09/02 20:11:31 rc5273 Exp $
#############################################################################

if [ ! -z "$PKG_INSTALL_ROOT" ] ; then 
    exit 0
fi

# persistence files are in /var/scn/persistence

/bin/rm -f /var/scn/persistence/*

exit 0
