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

📄 rc.watchdog.debian

📁 watchdog source watchdog source
💻 DEBIAN
字号:
#!/bin/sh#/etc/init.d/watchdog: start watchdog daemon.test -x /usr/sbin/watchdog || exit 0# Set run_watchdog to 1 to start watchdog or 0 to disable it.run_watchdog=1# Used by debmake as an argument to update-rc.d.FLAGS="defaults 10"case "$1" in  start)    if [ $run_watchdog = 1 ]    then	echo -n "Starting software watchdog..."	if start-stop-daemon --start --quiet --exec /usr/sbin/watchdog -- -r /usr/sbin/repair	then	    echo done.	else	    echo failed.	fi    fi    ;;  stop)    if [ $run_watchdog = 1 ]    then	echo -n "Stopping software watchdog..."	if start-stop-daemon --stop --quiet --pidfile /var/run/watchdog.pid	then	    echo done.	else	    echo failed.	fi    fi    ;;  *)    echo "Usage: /etc/init.d/watchdog {start|stop}"    exit 1esacexit 0

⌨️ 快捷键说明

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