我有一个Debian服务器,我只需要在启动时运行脚本即可。
我读到的是:https : //www.debian-administration.org/article/28/Making_scripts_run_at_boot_time_with_Debian
我现在得到:insserv:警告:脚本'缺少LSB标签和替代
所以看起来我现在必须添加:
### 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
现在看起来很疯狂:就像30行脚本一样,只是在启动时运行程序。
有没有一种工具可以做到这一点呢?
问候