view debian/prerm @ 391:6cb66f5a0479 noffle

[svn] * docs/noffle.1,src/configure.h,src/configfile.c,src/noffle.c: Add optional "auth" parameter to '--server' option. This turns on client authorisation regardless of the setting of authenticate-client. Useful if you want the same Noffle to authenticate or not depending on what/how it gets invoked.
author bears
date Fri, 23 May 2003 10:33:10 +0100
parents a23b37308063
children 6b4d9c2087f0
line wrap: on
line source

#!/bin/sh
# $Id: prerm 499 2003-03-29 06:57:20Z godisch $

set -e
. /usr/share/debconf/confmodule
db_version 2.0

if [ -x /usr/sbin/invoke-rc.d ]; then
	invoke-rc.d noffle stop
elif [ -x /etc/init.d/noffle ]; then
	/etc/init.d/noffle stop
fi

if [ -e /usr/share/debconf/confmodule ]; then
	db_get noffle/port
	port="$RET"
	[ -z "$port" -o "$port" = 119 ] && port=nntp || :
	update-inetd --disable $port
fi

db_stop
exit 0