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 2796 1e287badd033
parent 2795 d6fcd13c07e7
child 2797 76777fee99b7
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