Ho un server Debian e ho solo bisogno di eseguire uno script all'avvio.
Ho letto che: https://www.debian-administration.org/article/28/Making_scripts_run_at_boot_time_with_Debian
Ora ho: insserv: avvertimento: script 'tag LSB mancanti e sostituzioni
quindi sembra che devo aggiungere ora:
### 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
Ora sembra folle: come 30 righe di script solo per eseguire un programma all'avvio.
Esiste uno strumento che consente di farlo in modo semplice?
Saluti