3f1e8acaee
* grab manpage from .tar.gz instead of patch file * minor fixes in the Makefile Patch sent by Tomasz Luchowski <zuntum@eik.pl> in private mail.
17 lines
448 B
Bash
17 lines
448 B
Bash
#! /bin/sh
|
|
#
|
|
# $NetBSD: DEINSTALL,v 1.2 2001/02/26 03:41:29 hubertf Exp $
|
|
#
|
|
|
|
case "$2" in
|
|
DEINSTALL) rmdir 2>/dev/null /service || cat <<EOF
|
|
|
|
=============================================================
|
|
Note that the config files for this package under
|
|
/service are not removed in the deinstallation process.
|
|
You should remove those by hand, if you no longer need them.
|
|
=============================================================
|
|
|
|
EOF
|
|
;;
|
|
esac
|