#!/bin/sh
# $Id: postrm 24 2012-02-06 16:10:18Z sanders $

#DEBHELPER#

if [ "$1" = "upgrade" ]; then
    if [ -x "/etc/init.d/bit-firewall" ]; then
    	if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
    	    invoke-rc.d bit-firewall start || exit $?
    	else
    	    /etc/init.d/bit-firewall start || exit $?
    	fi
    fi
fi

