#!/bin/sh

set -e

if [ "remove" = "$1" ]; then
    if command -v update-inetd > /dev/null; then
        update-inetd --remove '.*gopher.*gophernicus'
    fi
fi

#DEBHELPER#

exit 0
