Fix a return value from sync_eventlog_params() (patch from Volker)
[ira/wip.git] / packaging / Debian / debian-unstable / swat.postinst
1 #!/bin/sh
2 #
3 #
4
5 PATH=/sbin:/bin:/usr/sbin:/usr/bin
6
7 case "$1" in
8         configure)
9                 ;;
10         abort-upgrade|abort-remove|abort-deconfigure)
11                 exit 0
12                 ;;
13         *)
14                 echo "$0: Unknown action \"$1\""
15                 exit 0
16                 ;;
17 esac
18
19 # Set up swat, turned off by default.
20 update-inetd --group OTHER --add \
21  '#<off># swat\t\tstream\ttcp\tnowait.400\troot\t/usr/sbin/tcpd\t/usr/sbin/swat'
22
23 #DEBHELPER#