blob: c5ab4890441a1bea6acc779cd21a1432d7edf1d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
PATH=/sbin:/bin:/usr/sbin:/usr/bin
case "$1" in
configure)
;;
abort-upgrade|abort-remove|abort-deconfigure)
exit 0
;;
*)
echo "$0: Unknown action \"$1\""
exit 0
;;
esac
# Set up swat, turned off by default.
update-inetd --group OTHER --add \
'#<off># swat\t\tstream\ttcp\tnowait.400\troot\t/usr/sbin/tcpd\t/usr/sbin/swat'
if [ -d /usr/doc -a ! -e /usr/doc/swat -a -d /usr/share/doc/swat ]; then
ln -sf ../share/doc/swat /usr/doc/swat
fi
|