Mercurial > hg > rlgwebd
view rlgwebd-stop @ 195:3bdee6371c3f
Change various filenames.
The shell script previously used to launch the daemon is now called
"initscript". The script files have had the ".js" extension removed
from their names.
author | John "Elwin" Edwards |
---|---|
date | Thu, 14 Jan 2016 20:52:29 -0500 |
parents | rlgwebd-stop.js@5483d413a45b |
children | a7cc38a0168d |
line wrap: on
line source
#!/usr/bin/env node var net = require('net'); var sockpath = "/var/run/rlgwebd.sock"; var sock = net.connect(sockpath, function () { sock.on('close', function () { if (process.argv[2] == "debug") console.log("Control socket closed"); }); sock.write("quit\n"); });