1#! /bin/sh
2#
3# add SWAT deamon to inetd.conf
4#
5cp /etc/inetd.conf /etc/inetd.conf.O
6
7if [ $? -ne 0 ]; then exit 1; fi
8if [ ! -r /etc/inetd.conf.O -o ! -w /etc/inetd.conf ]; then exit 1; fi
9
10sed -e "/^swat/D" -e "/^#SWAT/D" /etc/inetd.conf.O > /etc/inetd.conf
11echo '#SWAT services' >> /etc/inetd.conf
12echo swat stream tcp  nowait  root    /usr/samba/bin/swat swat >> /etc/inetd.conf
13
14#
15# add SWAT service port to /etc/services
16#
17cp /etc/services /etc/services.O
18
19if [ $? -ne 0 ]; then exit 1; fi
20if [ ! -r /etc/services.O -o ! -w /etc/services ]; then exit 1; fi
21
22sed -e "/^swat/D" -e "/^#SWAT/D" /etc/services.O > /etc/services
23echo '#SWAT services' >> /etc/services
24echo 'swat              901/tcp                         # SWAT' >> /etc/services
25
26#
27# restart inetd to start SWAT
28#
29/etc/killall -HUP inetd
30