#!/bin/sh

set -e

if [ "$1" = purge ]; then
    if [ -x /usr/sbin/update-inetd ]; then
	update-inetd --remove sane-port
	update-inetd --remove "#<off># sane-port"
    fi
fi

#DEBHELPER#