#!/bin/sh

set -e

if [ "$1" = "purge" ] ; then
	update-rc.d rexima remove >/dev/null || exit $?
fi

exit 0
