Tengo un servidor Debian y solo necesito ejecutar un script al inicio.
Leí eso: https://www.debian-administration.org/article/28/Making_scripts_run_at_boot_time_with_Debian
Obtuve ahora: insserv: advertencia: al script 'faltan etiquetas y anulaciones de LSB
Parece que tengo que agregar ahora:
### 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
Ahora parece una locura: como 30 líneas de script solo para ejecutar un programa al inicio.
¿Existe una herramienta que permita hacerlo de una manera simple?
Saludos