s4:dsdb/descriptor: pass object_list to create_security_descriptor()
[Samba/gebeck_regimport.git] / packaging / SGI / startswat.sh
blob2a0333020fb7f64ccadb330739741877429d268f
1 #! /bin/sh
3 # add SWAT deamon to inetd.conf
5 cp /etc/inetd.conf /etc/inetd.conf.O
7 if [ $? -ne 0 ]; then exit 1; fi
8 if [ ! -r /etc/inetd.conf.O -o ! -w /etc/inetd.conf ]; then exit 1; fi
10 sed -e "/^swat/D" -e "/^#SWAT/D" /etc/inetd.conf.O > /etc/inetd.conf
11 echo '#SWAT services' >> /etc/inetd.conf
12 echo swat stream tcp nowait root /usr/samba/bin/swat swat >> /etc/inetd.conf
15 # add SWAT service port to /etc/services
17 cp /etc/services /etc/services.O
19 if [ $? -ne 0 ]; then exit 1; fi
20 if [ ! -r /etc/services.O -o ! -w /etc/services ]; then exit 1; fi
22 sed -e "/^swat/D" -e "/^#SWAT/D" /etc/services.O > /etc/services
23 echo '#SWAT services' >> /etc/services
24 echo 'swat 901/tcp # SWAT' >> /etc/services
27 # restart inetd to start SWAT
29 /etc/killall -HUP inetd