annotate debian/prerm @ 476:29cccddfc307
noffle
[svn] * Makefile.am,Makefile.in: Remove unnecessary install option -D and relace
all user.group params in chown with the more modern user:group. Rerun
automake. MacOS X doesn't have -D on its install and its chown whinges
about user.group. Thanks again to Andre Berger.
author |
bears |
date |
Tue, 16 Mar 2004 11:44:43 +0000 |
parents |
18b3c63bf7dc |
children |
|
rev |
line source |
301
|
1 #!/bin/sh
|
422
|
2 # $Id: prerm 565 2003-06-20 06:35:55Z godisch $
|
301
|
3
|
|
4 set -e
|
|
5
|
421
|
6 if [ "$1" = remove -o "$1" = deconfigure ]; then
|
422
|
7 port="`grep "/usr/bin/noffle -r" /etc/inetd.conf 2> /dev/null | sed 's/[[:space:]].*$//'`" || true
|
421
|
8 if [ "$port" ]; then
|
|
9 update-inetd --disable "$port"
|
|
10 fi
|
324
|
11 fi
|
301
|
12
|
|
13 exit 0
|