Upstart mostra processo inexistente em execução

1

Estou usando o upstream 1.8-0ubuntu1 no Ubuntu-1210-quantal-64-minimal.

Isso me mostra que o nginx está rodando, quando não está.

# service nginx status
nginx start/running, process 2543
# ps -p 2543
PID TTY          TIME CMD

Minha configuração:

# nginx

description "nginx http daemon"
author "George Shammas <[email protected]>"

start on (filesystem and net-device-up IFACE=lo)
stop on runlevel [!2345]

env DAEMON=/opt/nginx/sbin/nginx
env PID=/opt/nginx/logs/nginx.pid

expect fork
#respawn
#respawn limit 10 5
#oom never

pre-start script
        $DAEMON -t
        if [ $? -ne 0 ]
                then exit $?
        fi
end script

exec $DAEMON
    
por Samat 27.09.2013 / 17:37

0 respostas