insserv: warning: script 'xxxx' missing LSB tags and overrides

更换系统后(Linux localhost 4.4.0-96-generic #119-Ubuntu SMP Tue Sep 12 14:59:54 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux)依照之前系统的配置来配置启动项,遇到了上面的问题。 虽然只是一个警告,但是经常出现,心里觉得不爽。

最后发现之前的脚本中未配置 Run-time dependencies, 参考/etc/init.d/下面的其他脚本,发现都有下面的内容,可以参考How to LSBize an Init Script

### BEGIN INIT INFO
# Provides:          scriptname
# 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

在自己的脚本中添加上面的内容,Provides 的脚本名做对应修改即可。如需更详细的设置,参考上面的链接。

Refer:
insserv: warning: script ‘uwsgi’ missing LSB tags and overrides

insserv: warning: script ‘mathkernel’ missing LSB tags and overrides

你可能感兴趣的:(工具)