blob: 18b6c35d576cbd7a4fecaa99ed5fccf83b6df43a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#! /bin/sh
#
# $NetBSD: DEINSTALL,v 1.2 2001/01/04 20:37:31 hubertf Exp $
#
case "$2" in
DEINSTALL) cat <<EOF
========================================================================
If you won't be using sendfile any longer, do the following:
o remove the "saft" lines from /etc/services and /etc/inetd.conf;
restart inetd.
o remove the check_sendfile lines from /etc/profile and /etc/csh.login
o remove the directory /var/spool/sendfile and its contents
========================================================================
EOF
;;
esac
|