📄 winbindd.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 + -