1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/packaging/Example/samba.init
John Terpstra 7491c291ff Added Example binary packaging instructions.
(This used to be commit 4c60314b05)
1998-11-16 12:21:02 +00:00

35 lines
598 B
Bash
Executable File

#!/bin/sh
#
if [ ! -d /usr/bin ]; then
echo "The /usr file system is not mounted."
exit 1
fi
killproc() {
pid=`/bin/ps ax | grep -w $1 | sed -e 's/^ *//' -e 's/ .*//'`
echo "Stopping $1 now."
[ "$pid" != "" ] && kill -15 $pid
echo $pid
}
# Start/stop processes required for samba server
case "$1" in
'start')
echo "Starting Samba"
/usr/local/samba/sbin/smbd
/usr/local/samba/sbin/nmbd
echo "Done."
;;
'stop')
killproc smbd
killproc nmbd
;;
*)
echo "Usage: /sbin/init.d/samba.init [ start | stop ]"
;;
esac
exit 0