3 if [ ! -d /usr
/bin
]; then
4 echo "The /usr file system is not mounted."
9 pid
=`/bin/ps ax | grep -w $1 | sed -e 's/^ *//' -e 's/ .*//'`
10 echo "Stopping $1 now."
11 [ "$pid" != "" ] && kill -15 $pid
16 # Start/stop processes required for samba server
22 /usr
/local
/samba
/sbin
/smbd
23 /usr
/local
/samba
/sbin
/nmbd
31 echo "Usage: /sbin/init.d/samba.init [ start | stop ]"