#!/bin/sh # # chkconfig: 345 91 35 # description: Starts and stops the Samba winbind daemon to provide\ # user and group information from a NT domain controller to linux. # # config: /etc/samba/smb.conf export PATH=/bin:/sbin:/usr/bin:/usr/sbin # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Daemon specific configuration. . /etc/sysconfig/winbind # Check that networking is up. if is_yes "${NETWORKING}"; then if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then msg_network_down winbindd exit 1 fi else exit 0 fi TMPDIR="/tmp"; export TMPDIR # Check that smb.conf exists. [ -f /etc/samba/smb.conf ] || exit 0 start() { if [ ! -f /var/lock/subsys/winbind ]; then msg_starting winbindd daemon /usr/sbin/winbindd RETVAL=$? if [ $RETVAL -eq 0 ]; then touch /var/lock/subsys/winbind RETVAL=1 fi else msg_already_running winbindd fi } stop() { if [ -f /var/lock/subsys/winbind ]; then msg_stopping winbindd killproc winbindd rm -f /var/lock/subsys/winbind >/dev/null 2>&1 else msg_not_running winbindd fi } condrestart() { if [ -f /var/lock/subsys/winbind ]; then stop start else msg_not_running winbindd RETVAL=$1 fi } RETVAL=0 # See how we were called. case "$1" in start) start ;; stop) stop ;; restart) stop start ;; reload|force-reload) if [ -f /var/lock/subsys/winbind ]; then msg_reloading winbindd killproc winbindd -HUP RETVAL=$? else msg_not_running winbindd exit 7 fi ;; try-restart) condrestart 0 ;; status) status winbindd RETVAL=$? ;; *) msg_usage "$0 {start|stop|restart|try-restart|reload|force-reload|status}" exit 3 esac exit $RETVAL