#!/bin/bash
		if [ -f /etc/init.d/catblock ]; then
            PSEX=`ps aux | grep -c catblock`
            if [ $PSEX -gt 1 ]; then
                /etc/init.d/catblock stop
                update-rc.d -f catblock remove
            fi
		fi
		