Ubuntu 9.04のinit.dにスクリプトがあり、update-rc.d init_test defaults 99を使用してupdate-rc.dで起動時に実行するように設定しています。すべてのシンボリックリンクがあり、権限は正しいようです。
-rwxr-xr-x 1 root root 642 2010-10-28 16:44 init_test
mike@xxxxxxxxxx:~$ find /etc -name S99* | grep init_test
find: /etc/rc5.d/S99init_test
find: /etc/rc4.d/S99init_test
find: /etc/rc2.d/S99init_test
find: /etc/rc3.d/S99init_test
スクリプトはソースと ./ を問題なく実行し、正しく動作します。スクリプトのソースは次のとおりです。
#!/bin/bash
### BEGIN INIT INFO
# Provides: init test script
# Required-Start: $remote_fs $syslog
# 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
start() {
echo "hi"
echo "start called" >> /tmp/test.log
return
}
stop() {
echo "Stopping"
}
echo "Script called" >> /tmp/test.log
case "$1" in
start)
start
;;
stop)
stop
;;
*)
echo "Usage: {start|stop|restart}"
exit 1
;;
esac
exit $?
マシンが起動すると、test.log に「script called」や「start called」がまったく表示されません。何か明らかに間違っているところがあるのでしょうか?
答え1
何が問題なのかが分かりました。まったく関係のないスクリプトが起動時にブロックされていました。ユーザーにキー入力を要求していたため、他のすべての起動スクリプトが停止していたようです。init.d スクリプトの実行をログに記録するなど、このような問題を解決する方法はありますか?