#!/bin/sh

if [ "$1" = "purge" -a -f "/etc/inetd.conf" ]; then
	/usr/sbin/update-inetd --remove "#<off># gopher"
fi

if [ -d "/run/systemd/system" ]; then
	systemctl --system daemon-reload >/dev/null || true
fi

#DEBHELPER#