Upstart 作业未在启动时运行

Upstart 作业未在启动时运行

大家好,我一段时间以来一直在试图弄清楚我的问题,现在我想是时候向比我更了解的人请教了。希望这只是对知情人士的简单解决方案

基本上,我创建了 2 个 upstart 脚本,但只有 1 个会在启动时运行,另一个则不会,尽管手动调用时两个脚本都可以正常运行

这是一个有效的

# status led daemon
#

description "Status led daemon; Used for controlling the server status led"
author "None"

start on (started dbus and started mountall)
stop on (xbmc-do-stop or runlevel [!2345])

exec led.sh
respawn

这是没有的

# irexec daemon
#

description "irexec daemon"
author "None"

start on (started dbus and started mountall)
stop on (xbmc-do-stop or runlevel [!2345])

exec irexec /home/pi/.lircrc
respawn

正如你所见,它们非常相似,我不明白为什么一个能工作,而另一个却不能

相关内容