mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
3db52feb1f
(This used to be commit 453a822a76
)
35 lines
596 B
Bash
Executable File
35 lines
596 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/bin/smbd
|
|
/usr/local/samba/bin/nmbd
|
|
echo "Done."
|
|
;;
|
|
'stop')
|
|
killproc smbd
|
|
killproc nmbd
|
|
;;
|
|
*)
|
|
echo "Usage: /sbin/init.d/samba.init [ start | stop ]"
|
|
;;
|
|
esac
|
|
exit 0
|