#!/bin/sh

# Copyright 2004 Sun Microsystems, Inc. All Rights Reserved.
#
# ident "@(#)postremove	1.3 12/11/03"

# postremove script
 
#
# Return pid of named process in variable "pid"
#
# Exit codes for installation scripts
 
export BASEDIR
mozdir=$BASEDIR/sfw/lib/mozilla
 
#
# Trap interrupt
#
trap `exit 3` 15

# update the time stamp file
if [ -f $mozdir/.pkg_update_stamp ]; then
        date > $mozdir/.pkg_update_stamp
fi

exit 0
 

