# HG changeset patch # User Matthew Wild # Date 1263168873 0 # Node ID 62aa1b465e05c73e578c32418eabbcf2c293209f # Parent 9806fac994f858650fea0d60b2f33af95b2862b6 util.prosodyctl: Report Prosody as not running if the pidfile isn't locked diff -r 9806fac994f8 -r 62aa1b465e05 util/prosodyctl.lua --- a/util/prosodyctl.lua Sun Jan 10 23:49:38 2010 +0000 +++ b/util/prosodyctl.lua Mon Jan 11 00:14:33 2010 +0000 @@ -12,6 +12,7 @@ local stringprep = encodings.stringprep; local usermanager = require "core.usermanager"; local signal = require "util.signal"; +local lfs = require "lfs"; local nodeprep, nameprep = stringprep.nodeprep, stringprep.nameprep; @@ -64,11 +65,17 @@ return false, "no-pidfile"; end - local file, err = io.open(pidfile); + local file, err = io.open(pidfile, "w"); if not file then return false, "pidfile-read-failed", err; end + local locked, err = lfs.lock(file, "w"); + if locked then + file:close(); + return false, "pidfile-not-locked"; + end + local pid = tonumber(file:read("*a")); file:close(); @@ -82,7 +89,7 @@ function isrunning() local ok, pid, err = _M.getpid(); if not ok then - if pid == "pidfile-read-failed" then + if pid == "pidfile-read-failed" or pid == "pidfile-not-locked" then -- Report as not running, since we can't open the pidfile -- (it probably doesn't exist) return true, false;