removed two unneeded files after Richard backed out these changes.
[Samba.git] / packaging / HPUX / configure.swat
blob0e69fc03fe45123cd27709a431dcb76d07da77f9
1 # Configure script for Samba.swat
3 UPDATE=0
5 KillProcess()
7   proc=$1
8   sig=$2
10   # Determine PID of process(es) to stop and kill it.  This routine
11   # is designed to work with bourne shell, ksh and posix shell.
13   Command=`basename $proc | cut -c1-8`     # Solaris ps limited to 8 chars.
15   pid=`ps -e | awk "\\$NF~/$Command/ {print \\$1}"`
17   if [ "X$pid" != "X" ]; then
18     kill -$sig $pid
19   fi
22 UpdateServices()
24   if grep -q '^swat' /etc/services
25   then
26     return
27   fi
29   echo "swat      901/tcp" >>/etc/services
30   cat <<__EOF__
31 NOTE:    The following entry had been added to /etc/services:
32              swat        901/tcp
33          Should you want to move SWAT to another port, modify the entry
34          accordingly and restart inetd daemon with -HUP signal.
35 __EOF__
36   UPDATE=1
39 UpdateInetd()
41   if grep -q '^swat' /etc/inetd.conf
42   then
43     return
44   fi
46   echo "swat    stream tcp   nowait.400 root /usr/local/samba/bin/swat swat" >>/etc/inetd.conf
49   UPDATE=1
52 UpdateServices
53 UpdateInetd
55 if [ "$UPDATE" -eq 1 ]
56 then
57   KillProcess inetd HUP
60 exit 0