redhat-init.d

来自「模仿cisco路由器」· D 代码 · 共 64 行

D
64
字号
#!/bin/sh## fprobe        This shell script takes care of starting and stopping#               the fprobe daemon.## chkconfig: - 65 35# description: fprobe netflow generator# Source function library.. /etc/rc.d/init.d/functions# Source networking configuration.. /etc/sysconfig/network# Check that networking is up.[ ${NETWORKING} = "no" ] && exit 0[ -f /usr//local/bin/fprobe ] || exit 0RETVAL=0OPTIONS="-i eth0 -a 192.168.5.1 -l 1 ginger.local.senie.com:2055"start() {         # Start daemons.         echo -n "Starting fprobe: "         daemon /usr/local/bin/fprobe $OPTIONS         RETVAL=$?         echo         [ $RETVAL -eq 0 ] && touch /var/lock/subsys/fprobe         return $RETVAL}stop() {         # Stop daemons.         echo -n "Shutting down fprobe: "         killproc fprobe         RETVAL=$?         echo         [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/fprobe         return $RETVAL}# See how we were called.case "$1" in   start)         start         ;;   stop)         stop         ;;   restart|reload)         stop         start         RETVAL=$?         ;;   *)         echo "Usage: dhcpd {start|stop|restart}"         exit 1esacexit $RETVAL

⌨️ 快捷键说明

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