Estoy tratando de controlar un programa basado en Python (que no se separa de la consola)
#!/bin/bash
user=nobody
pid=/var/run/xx.pid
name=xx
prog=/xx.py
case $1 in
start)
/sbin/start-stop-daemon --start -b --oknodo --user "$user" --name "$name" --pidfile "$pid" --startas "$prog" --chuid nobody -- --daemon
;;
stop)
/sbin/start-stop-daemon --stop --oknodo --user "$user" --name "$name" --pidfile "$pid" --retry=TERM/5/KILL/1
;;
restart)
;;
*)
;;
esac
La parte de inicio funciona bien. Puedo ver el script en funcionamiento, pero la parte de detención no. Simplemente diceNo xx found running; none killed.
¿Entonces supongo que hay algo mal con la parte inicial?