#!/bin/bash

set -e

###############################################################################
#
# Remove the inetd setting when purging this package.
#

if [ "$1" = purge ]; then
  update-inetd --remove "#?support.*"
fi
