#! /bin/sh
# postrm script for asterisk-phonepatch

set -e

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

exit 0
