verifique se o script é executável
chmod +x /etc/init.d/startupcss
Eu tenho este script chamado startupcss
que coloquei em /etc/init.d
em seguida, adicione o serviço update-rc.d startupcss defaults
, mas quando eu tento iniciar o serviço service startupcss start
eu recebo este erro startupcss: unrecognized service
, obviamente, não é executado na inicialização também
Aqui estão meus startupcss
#! /bin/sh
### BEGIN INIT INFO
# Provides: startupcss
# 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
# /etc/init.d/startupcss
case "$1" in
start)
screen -A -m -d -S css-beta-server /root/css-server/srcds_run -game cstrike +map de_dust2 +maxplayers 32 -port 27015 -tick 100
echo "css server started"
;;
stop)
screen -S css-beta-server -X quit
echo "server stopped"
;;
*)
echo "Usage: /etc/init.d/startupcss {start|stop}"
exit 1
;;
esac
exit 0
como posso consertar isso? também estou logar como root
Você pode simplesmente adicionar seu script em:
System Tools -> Preferences -> Startup Applications