rlgwebd/rlgwebd-stop

20 lines
456 B
Text
Raw Normal View History

#!/usr/bin/env node
var net = require('net');
var sockpath = "/var/run/rlgwebd/rlgwebd.sock";
var sock = new net.Socket();
sock.on('error', function (err) {
console.log("Cannot connect to " + sockpath + ", rlgwebd already stopped.");
process.exit(0);
});
sock.connect(sockpath, function () {
sock.on('close', function (had_error) {
if (process.argv[2] == "debug")
console.log("Control socket closed");
});
sock.write("quit\n");
});