	#!/bin/sh
	# check if we are on real system
	if [ -z "${IPKG_INSTROOT}" ]; then
		echo "Stopping service and removing rc.d symlink for adblock-fast"
		/etc/init.d/adblock-fast stop || true
		/etc/init.d/adblock-fast killcache || true
		/etc/init.d/adblock-fast disable || true
	fi
	exit 0
