⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 winbindd.rc

📁 samba-3.0.22.tar.gz 编译smb服务器的源码
💻 RC
字号:
#! /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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -