Fix a small typo in a comment and pretty it up a bit.
[Samba/gebeck_regimport.git] / packaging / Solaris / samba.server.master
blob6de77780b340d09c127485d8b532202e550150fe
1 #!/bin/sh
2 #ident "@(#)samba.server 1.0 96/06/19 TK" /* SVr4.0 1.1.13.1*/
4 # Please send info on modifications to knuutila@cs.utu.fi
6 # This file should have uid root, gid sys and chmod 744
8 if [ ! -d /usr/bin ]
9 then # /usr not mounted
10 exit
13 killproc() { # kill the named process(es)
14 pid=`/usr/bin/ps -e |
15 /usr/bin/grep -w $1 |
16 /usr/bin/sed -e 's/^ *//' -e 's/ .*//'`
17 [ "$pid" != "" ] && kill $pid
20 # Start/stop processes required for samba server
22 case "$1" in
24 'start')
26 # Edit these lines to suit your installation (paths, workgroup, host)
28 BASE=__BASEDIR__/samba
29 $BASE/bin/smbd -D -s$BASE/lib/smb.conf
30 $BASE/bin/nmbd -D -s$BASE/lib/smb.conf
32 'stop')
33 killproc nmbd
34 killproc smbd
37 'restart')
38 killproc nmbd
39 killproc smbd
40 BASE=/usr/local/samba
41 $BASE/bin/smbd -D -s$BASE/lib/smb.conf
42 $BASE/bin/nmbd -D -l$BASE/var/log -s$BASE/lib/smb.conf
46 echo "Usage: /etc/init.d/samba.server { start | stop | restart }"
48 esac