Executando o script python como um daemon no debian

1

Estou tentando executar meu script python como um serviço ... Mas estou recebendo este erro quando chamo sudo update-rc.d mylistener start :

Use of uninitialized value $ARGV[1] in pattern match (m//) at /usr/sbin/update-rc.d line 192.

update-rc.d: error: expected NN after start

Aqui está o meu script de inicialização mylistener :

#! /bin/sh
### BEGIN INIT INFO
# Provides:          mylistener
# Required-Start:    $remote_fs $syslog
# Required-Stop:     $remote_fs $syslog
# Default-Start:     S
# Default-Stop:      0 6
# Short-Description: This is the description.
# Description:       This is the description.
### END INIT INFO

DAEMON=/srv/example.org/public/env/bin/python
ARGS=/srv/example.org/public/my_listener.py
PIDFILE=/srv/example.org/my_listener.pid

case "$1" in
  start)
    echo "starting server"
    /sbin/start-stop-daemon --start --pidfile $PIDFILE \
        --user www-data --group www-data \
        -b --make-pidfile \
        --chuid www-data \
        --exec $DAEMON $ARGS
    ;;
  stop)
    echo "stopping server"
    /sbin/start-stop-daemon --stop --pidfile $PIDFILE --verbose
    ;;
  *)
    echo "Useage: /etc/init.d/mylistener {start|stop}"
    exit 1
    ;;
esac

exit 0

Alguém pode ver onde estou indo errado? Isso está sendo executado em um servidor debian.

    
por ingh.am 25.10.2011 / 12:26

1 resposta

4

Tente isto:

sudo update-rc.d mylistener start 20 2 3 4 5 . stop 80 0 1 6 .

significa que seu script de inicialização será iniciado na 20ª ordem, runlevel 2345 e terminará na 80ª prioridade, nível de execução 016.

ou simples é:

sudo update-rc.d mylistener defaults
    
por 25.10.2011 / 12:36