使 init.d 脚本在启动时启动

使 init.d 脚本在启动时启动

我在 /etc/init.d 中创建了以下文件

#! /bin/sh
# /etc/init.d/ndppd

# Carry out specific functions when asked to by the system
case "$1" in
  start)
   ndppd -d
    ;;
  *)
    echo "Usage: /etc/init.d/ndppd {start}"
    exit 1
    ;;
esac

exit 0

然后我执行了chmod +x /etc/init.d/ndppd

我希望 ndppd 在启动时运行,所以我运行了 update-rc.d ndppd defaults

但当我跑步时update-rc.d ndppd defaults

我没有得到任何输出

这是为什么?使我的 init.d 脚本在启动时运行“start”部分的正确方法是什么?

答案1

您需要在 /etc/rc3.d 中有一个指向该文件的符号链接。该名称需要以大写 S 开头,按照惯例,然后有 2 位数字和类似 nppd 的名称。

文件按名称排序,因此 2 位数字有效地给出了顺序。

为了能够使用 update-rc,您需要在文件中添加一些神奇的注释。

答案2

# Provides:          ndppd
# Required-Start:    $local_fs $remote_fs
# Required-Stop:     $local_fs $remote_fs
# Should-Start:      $syslog
# Should-Stop:       $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Start or stop the inetd daemon.
### END INIT INFO

应该在文件开头写入 #!/bin/sh -e 之后

相关内容