为了学习目的,我在 Debian Wheezy 下使用了 LSB 初始化脚本(init
来自 sysvinit 软件包版本 2.88dsf-41+deb7u1)。我的脚本如下:
# cat /etc/init.d/test-script
#! /bin/sh
### BEGIN INIT INFO
# Provides: test
# Required-Start: $all
# Required-Stop: $all
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: test script
# Description: test script
### END INIT INFO
# always executes
touch /tmp/test-file
case "$1" in
start)
echo "Starting script test"
touch /tmp/test-file-start
;;
stop)
echo "Stopping script test"
touch /tmp/test-file-stop
;;
restart)
echo "Restarting script test"
touch /tmp/test-file-restart
;;
force-reload)
echo "Force-reloading script test"
touch /tmp/test-file-force-reload
;;
status)
echo "Status of test"
touch /tmp/test-file-status
;;
*)
echo "Usage: /etc/init.d/test {start|stop}"
exit 1
;;
esac
exit 0
#
我使/etc/init.d/test-script
文件可执行并向/etc/rc2.d/
目录添加符号链接:
lrwxrwxrwx 1 root root 21 Nov 2 13:19 /etc/rc2.d/S04test-script -> ../init.d/test-script
..因为我的默认运行级别是 2 并重新加载了机器,但脚本没有启动。作为最后一步,我还添加test
到/etc/init.d/.depend.start
文件中,但/etc/init.d/test-script
在启动过程中仍未执行。
insserv
安装初始化脚本需要哪些额外步骤?
答案1
除了目录的符号链接之外/etc/rc<runlevel>.d/
,还向文件insserv
添加一行。我的错误是我向文件添加了行。如果我们以具有以下 LSB 标头的示例为例:<script_name>:
/etc/init.d/.depend.start
<boot_facility>:
/etc/init.d/.depend.start
/etc/init.d/test-script
### BEGIN INIT INFO
# Provides: test
# Required-Start: $all
# Required-Stop: $all
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: test script
# Description: test script
### END INIT INFO
..然后需要添加test-script:
一行而/etc/init.d/.depend.start
不是test:
一行。
答案2
我认为你必须用来update-rc.d
设置开始和停止以获得最佳结果......
https://www.debian-administration.org/article/28/Making_scripts_run_at_boot_time_with_Debian
来自 insserver 的手册页:
除非您确切知道自己在做什么,否则不建议直接执行 insserv,否则可能会导致引导系统无法运行。 update-rc.d 是管理 init 脚本的推荐接口。