mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
62ce28e8d5
(This used to be commit 81b3af71d5
)
50 lines
868 B
Bash
Executable File
50 lines
868 B
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
|
|
|
|
# Check that smb.conf exists.
|
|
[ -f /etc/samba/smb.conf ] || exit 0
|
|
|
|
# See how we were called.
|
|
case "$1" in
|
|
start)
|
|
echo -n "Starting SMB services: "
|
|
daemon smbd -D
|
|
daemon nmbd -D
|
|
echo
|
|
touch /var/lock/subsys/smb
|
|
;;
|
|
stop)
|
|
echo -n "Shutting down SMB services: "
|
|
killproc smbd
|
|
killproc nmbd
|
|
rm -f /var/lock/subsys/smb
|
|
echo ""
|
|
;;
|
|
status)
|
|
status smbd
|
|
status nmbd
|
|
;;
|
|
restart)
|
|
echo -n "Restarting SMB services: "
|
|
$0 stop
|
|
$0 start
|
|
echo "done."
|
|
;;
|
|
*)
|
|
echo "Usage: smb {start|stop|restart|status}"
|
|
exit 1
|
|
esac
|
|
|