#!/sbin/sh
########
#  Product: Firefox
#  Fileset: All
#  postremove
########
#
# (c) Copyright 2007, Hewlett-Packard Company
#
########

    UTILS="/usr/lbin/sw/control_utils"
    if [[ ! -f $UTILS ]]
    then
        echo "ERROR:   Cannot find $UTILS"
        exit 1
    fi
    . $UTILS
    exitval=$SUCCESS

##############################################################################
# MAIN
#    

    # Now delete any files that may have been created at runtime by this
    # release of Firefox:
    rm -f \
        /opt/firefox/extensions/talkback@mozilla.org/chrome.manifest

    exit $exitval
