RLGWebD: move the control socket into /var/run.
This is a more standard location. /run is preferred by systemd, but portability to non-systemd systems is important.
This commit is contained in:
parent
9a709adc58
commit
ff0814c7ac
4 changed files with 3 additions and 4 deletions
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env node
|
||||
|
||||
var net = require('net');
|
||||
var sockpath = "/var/local/rlgwebd/ctl";
|
||||
var sockpath = "/var/run/rlgwebd.sock";
|
||||
|
||||
var sock = net.connect(sockpath, function () {
|
||||
sock.on('close', function () {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue