procd: remove pidfile after unexpected termination without respawn
authorJurgen Van Ham <juvanham.tc@gmail.com>
Tue, 5 Jul 2016 07:57:18 +0000 (09:57 +0200)
committerJohn Crispin <john@phrozen.org>
Tue, 5 Jul 2016 08:20:16 +0000 (10:20 +0200)
When procd detects a daemon halts and it is not configured to
be respawned, the pidfile has to be removed.

Signed-off-by: Jurgen Van Ham <juvanham.tc@gmail.com>
service/instance.c

index dccf4b4..d7d1f82 100644 (file)
@@ -513,7 +513,7 @@ instance_exit(struct uloop_process *p, int ret)
 
        uloop_timeout_cancel(&in->timeout);
        if (in->halt) {
-               /* no action */
+               instance_removepid(in);
        } else if (in->restart) {
                instance_start(in);
        } else if (in->respawn) {