Ho scritto uno script upstart per avviare un demone all'interno di una sessione di tmux. Funziona bene e rigenera il processo se muore inaspettatamente, ma non riesco a fermarlo manualmente.
Il lavoro (chiamato bukkit) è simile al seguente:
start on filesystem
stop on runlevel [!2345]
respawn
respawn limit 5 30
chdir /home/minecraft/bukkit
expect daemon
kill timeout 30
pre-start script
test -x /home/minecraft/bukkit/craftbukkit-0.0.1-SNAPSHOT.jar || { stop; exit 0; }
end script
pre-stop script
tmux send -t bukkit "stop"
tmux send -t bukkit "Enter"
sleep 10 # Wait for server to shut down properly
end script
exec tmux new-session -d -s minecraft -n bukkit "sudo -u minecraft -- /home/minecraft/java/jre1.6.0_27/bin/java -Xincgc -Xmx1G -jar /home/minecraft/bukkit/craftbukkit-0.0.1-SNAPSHOT.jar"
Quando emetto un stop bukkit
blocco si blocca per ~ 10 secondi (il timer di spegnimento, immagino) e stampa bukkit start/running, process 2391
. Quando ho impostato l'avvio per il debug, ho trovato queste righe pertinenti nel registro:
Sep 21 19:14:59 cheftest init: bukkit goal changed from start to stop
Sep 21 19:14:59 cheftest init: bukkit main process (2499) exited normally
Sep 21 19:14:59 cheftest init: bukkit main process ended, respawning
Sep 21 19:14:59 cheftest init: bukkit goal changed from stop to respawn
Perché upstart continua a rigenerare il mio processo quando dovrebbe fermarlo?