diff rlgwebd-stop @ 208:f06f2d1a5035

Fix possibly insecure permissions on the control socket. The server's control socket is now in a private directory.
author John "Elwin" Edwards
date Sat, 28 Jan 2017 09:57:31 -0500
parents ffe22d88bea1
children
line wrap: on
line diff
--- a/rlgwebd-stop	Fri Jan 27 19:18:31 2017 -0500
+++ b/rlgwebd-stop	Sat Jan 28 09:57:31 2017 -0500
@@ -1,7 +1,7 @@
 #!/usr/bin/env node
 
 var net = require('net');
-var sockpath = "/var/run/rlgwebd.sock";
+var sockpath = "/var/run/rlgwebd/rlgwebd.sock";
 
 var sock = new net.Socket();