Mercurial > hg > rlgwebd
annotate rlgwebd-stop @ 196:298a531776d6
Add an uninstall target to the Makefile.
Also a fix to the install target, and the initscript.
author | John "Elwin" Edwards |
---|---|
date | Thu, 14 Jan 2016 21:30:14 -0500 |
parents | 3bdee6371c3f |
children | a7cc38a0168d |
rev | line source |
---|---|
193 | 1 #!/usr/bin/env node |
2 | |
3 var net = require('net'); | |
194
5483d413a45b
RLGWebD: move the control socket into /var/run.
John "Elwin" Edwards
parents:
193
diff
changeset
|
4 var sockpath = "/var/run/rlgwebd.sock"; |
193 | 5 |
6 var sock = net.connect(sockpath, function () { | |
7 sock.on('close', function () { | |
8 if (process.argv[2] == "debug") | |
9 console.log("Control socket closed"); | |
10 }); | |
11 sock.write("quit\n"); | |
12 }); |