mirror of
https://github.com/samba-team/samba.git
synced 2025-02-04 17:47:26 +03:00
c32c36d96f
(This used to be commit 65022f1dde7012a8c8c1872ad87184531973b5c5)
24 lines
368 B
Bash
24 lines
368 B
Bash
#!/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'
|
|
|
|
#DEBHELPER#
|