prosodyctl: Use mode r+ for opening the file so 1) it fails if the file doesn't exist 2) we have write access to lock it
authorMatthew Wild <mwild1@gmail.com>
Wed, 13 Jan 2010 00:04:38 +0000
changeset 2457 102c81e37878
parent 2456 260601859c9f
child 2458 b4628c4d9ee2
prosodyctl: Use mode r+ for opening the file so 1) it fails if the file doesn't exist 2) we have write access to lock it
util/prosodyctl.lua
--- a/util/prosodyctl.lua	Wed Jan 13 00:03:22 2010 +0000
+++ b/util/prosodyctl.lua	Wed Jan 13 00:04:38 2010 +0000
@@ -65,7 +65,7 @@
 		return false, "no-pidfile";
 	end
 	
-	local file, err = io.open(pidfile, "w");
+	local file, err = io.open(pidfile, "r+");
 	if not file then
 		return false, "pidfile-read-failed", err;
 	end