mirror of
https://github.com/samba-team/samba.git
synced 2025-01-27 14:04:05 +03:00
6cb803dd06
Jeremy. (This used to be commit 22b0d5da63716028c8f4b61f002493aa67ba189a)
59 lines
1.1 KiB
Bash
Executable File
59 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# chkconfig: 345 91 35
|
|
# description: Starts and stops the Samba smbd and nmbd daemons \
|
|
# used to provide SMB network services.
|
|
|
|
# Source function library.
|
|
. /etc/rc.d/init.d/functions
|
|
|
|
# Source networking configuration.
|
|
. /etc/sysconfig/network
|
|
|
|
# Check that networking is up.
|
|
[ ${NETWORKING} = "no" ] && exit 0
|
|
|
|
CONFIG=/etc/samba/smb.conf
|
|
|
|
# Check that smb.conf exists.
|
|
[ -f $CONFIG ] || exit 0
|
|
|
|
# See how we were called.
|
|
case "$1" in
|
|
start)
|
|
echo -n "Starting SMB services: "
|
|
daemon smbd -D
|
|
daemon nmbd -D
|
|
if [ "`grep -i 'winbind uid' /etc/samba/smb.conf | egrep -v [\#\;]`" ]; then
|
|
daemon winbindd
|
|
fi
|
|
echo
|
|
touch /var/lock/subsys/smb
|
|
;;
|
|
stop)
|
|
echo -n "Shutting down SMB services: "
|
|
killproc smbd -TERM
|
|
killproc nmbd -TERM
|
|
if [ "`ps -ef | grep winbind | grep -v grep`" ]; then
|
|
killproc winbindd
|
|
fi
|
|
rm -f /var/lock/subsys/smb
|
|
echo ""
|
|
;;
|
|
status)
|
|
status smbd
|
|
status nmbd
|
|
status winbindd
|
|
;;
|
|
restart)
|
|
echo -n "Restarting SMB services: "
|
|
$0 stop
|
|
$0 start
|
|
echo "done."
|
|
;;
|
|
*)
|
|
echo "Usage: smb {start|stop|restart|status}"
|
|
exit 1
|
|
esac
|
|
|