init
学習目的で、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
init スクリプトをインストールするには、どのような追加手順が必要ですか?
答え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 を直接実行することは推奨されません。これを行うと、ブート システムが動作しなくなる可能性があります。init スクリプトを管理するには、update-rc.d が推奨されるインターフェイスです。