summaryrefslogtreecommitdiff
path: root/packaging/SGI/removeswat.sh
blob: 7a4745345be8d5837ef37609aee9090c1ff579fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#! /bin/sh
#
# remove SWAT deamon from inetd.conf
#
cp /etc/inetd.conf /etc/inetd.conf.O

if [ $? -ne 0 ]; then exit 1; fi
if [ ! -r /etc/inetd.conf.O -o ! -w /etc/inetd.conf ]; then exit 1; fi

sed -e "/^swat/D" -e "/^#SWAT/D" /etc/inetd.conf.O > /etc/inetd.conf

#
# remove SWAT service port from /etc/services
#
cp /etc/services /etc/services.O

if [ $? -ne 0 ]; then exit 1; fi
if [ ! -r /etc/services.O -o ! -w /etc/services ]; then exit 1; fi

sed -e "/^swat/D" -e "/^#SWAT/D" /etc/services.O > /etc/services

#
# restart inetd to reread config files
#
/etc/killall -HUP inetd