winbindd.rc

来自「samba-3.0.22.tar.gz 编译smb服务器的源码」· RC 代码 · 共 39 行

RC
39
字号
#! /bin/sh## winbindd control#IS_ON=/etc/chkconfigKILLALL=/sbin/killallWINBINDD=/usr/samba/bin/winbinddif test ! -x $IS_ON ; then    IS_ON=truefiif $IS_ON verbose ; then    ECHO=echoelse		# For a quiet startup and shutdown    ECHO=:ficase $1 in'start')	if $IS_ON winbind && test -x $WINBINDD; then	    $KILLALL -15 winbindd	    $ECHO "winbindd:\c"	    $WINBINDD ; $ECHO " winbindd."	fi	;;'stop')	$ECHO "Stopping winbindd."	$KILLALL -15 winbindd	exit 0	;;*)	echo "usage: /etc/init.d/winbind {start|stop}"	;;esac

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?