1#! /bin/sh
2#
3# remove SWAT deamon from 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
11
12#
13# remove SWAT service port from /etc/services
14#
15cp /etc/services /etc/services.O
16
17if [ $? -ne 0 ]; then exit 1; fi
18if [ ! -r /etc/services.O -o ! -w /etc/services ]; then exit 1; fi
19
20sed -e "/^swat/D" -e "/^#SWAT/D" /etc/services.O > /etc/services
21
22#
23# restart inetd to reread config files
24#
25/etc/killall -HUP inetd
26