#!/bin/sh

#
# Copyright (c) 1998 by Sun Microsystems, Inc. All Rights Reserved.
#
# @(#)prebackout 1.1    98/12/21
#

if test -x /etc/init.d/scalr.cache ; then
    if /etc/init.d/scalr.cache isrunning ; then
        cat <<'H'ERE
    You will need to stop the proxycache process backing out of
    this patch. To do this type:
        /etc/init.d/scalrd stop
        /etc/init.d/scalr.cache stop

    After the patch has been successfully applied, you can restart
    the proxycache by typing:
        /etc/init.d/scalr.cache start
        /etc/init.d/scalrd start
HERE
        exit 1
    fi
fi
