使用 LSBInitScripts 在启动时添加程序

使用 LSBInitScripts 在启动时添加程序

我使用 Debian Lenny(我知道 lenny 很旧,还有其他的 bla bla)并且想在启动时放置一个程序。我update-rc.d通过在 上添加可执行文件来使用/etc/init.d。通过参考http://wiki.debian.org/LSBInitScripts,我需要添加一个LSB/etc/init.d/myprogram

### BEGIN INIT INFO
# Provides:          myprogram
# Required-Start:    $all
# Required-Stop:     $remote_fs $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Start daemon at boot time
# Description:       Enable service provided by daemon.
### END INIT INFO

那么我需要附加任何脚本喜欢:

DAEMON_PATH="/home/myprogram"
DAEMON=node
DAEMONOPTS="-my opts"
NAME=node
DESC="myprogram"
PIDFILE=/var/run/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME

case "$1" in
start)
    printf "%-50s" "Starting $NAME..."
    cd $DAEMON_PATH
    PID=`$DAEMON $DAEMONOPTS > /dev/null 2>&1 & echo $!`
    #echo "Saving PID" $PID " to " $PIDFILE
        if [ -z $PID ]; then
            printf "%s\n" "Fail"
        else
            echo $PID > $PIDFILE
            printf "%s\n" "Ok"
        fi
;;
status)
        printf "%-50s" "Checking $NAME..."
        if [ -f $PIDFILE ]; then
            PID=`cat $PIDFILE`
            if [ -z "`ps axf | grep ${PID} | grep -v grep`" ]; then
                printf "%s\n" "Process dead but pidfile exists"
            else
                echo "Running"
            fi
        else
            printf "%s\n" "Service not running"
        fi
;;
stop)
        printf "%-50s" "Stopping $NAME"
            PID=`cat $PIDFILE`
            cd $DAEMON_PATH
        if [ -f $PIDFILE ]; then
            kill -HUP $PID
            printf "%s\n" "Ok"
            rm -f $PIDFILE
        else
            printf "%s\n" "pidfile not found"
        fi
;;

restart)
    $0 stop
    $0 start
;;

*)
        echo "Usage: $0 {status|start|stop|restart}"
        exit 1
esac

我觉得 LSBInitScripts 和上面的脚本是不同的东西,但是当我检查 上的一些文件时/etc/init.d,它们有类似的脚本。您能否澄清我是否需要上述脚本。如果我需要使用上面的脚本,我是否需要创建一个 .pid 文件还是会自动创建它?

答案1

就这种情况而言,它们是同一件事。 LSB 信息只是以 shell 注释形式添加到脚本 init 开头的元数据。

只需将这两个块组合起来即可。它应该包含:

  1. 解释器行(例如,#!/bin/sh
  2. LSB 信息,根据您的应用程序的需要进行编辑。
  3. 脚本的其余部分(启动/停止函数等)。

如果您需要示例,可以查看/etc/init.d/skeleton。完成后,将文件放入/etc/init.d/并使用insserv而不是update-rc.d安装符号链接。

相关内容