📄 winbind.init
字号:
#!/bin/sh## Start/stops the winbindd daemon.##PATH=/sbin:/bin:/usr/sbin:/usr/binDAEMON=/usr/sbin/winbindd# clear conflicting settings from the environmentunset TMPDIR# See if the daemon is theretest -x $DAEMON || exit 0case "$1" in start) echo -n "Starting the Winbind daemon: winbindd" start-stop-daemon --start --quiet --exec $DAEMON echo "." ;; stop) echo -n "Stopping the Winbind daemon: winbindd" start-stop-daemon --stop --quiet --oknodo --exec $DAEMON echo "." ;; restart|force-reload) echo -n "Restarting the Winbind daemon: winbindd" start-stop-daemon --stop --quiet --oknodo --exec $DAEMON sleep 2 start-stop-daemon --start --quiet --exec $DAEMON echo "." ;; *) echo "Usage: /etc/init.d/winbind {start|stop|restart|force-reload}" exit 1 ;;esacexit 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -