Add a script to stop RLGWebD.

socat is no longer needed, nor is preventing systemd from sending
signals.
This commit is contained in:
John "Elwin" Edwards 2016-01-02 14:33:48 -05:00
parent ec5c79d46e
commit 9a709adc58
3 changed files with 15 additions and 3 deletions

View file

@ -1,4 +1,5 @@
CHROOT=/var/dgl
BINDIR=/usr/local/bin
WEBASSETS = about.html bell.svg index.html options.html options.js rlgterm.js \
style-rlg.css termemu.js termemu-keys.js tty.css
@ -18,7 +19,7 @@ install: all
mkdir -p ${CHROOT}/bin
cp sqlickrypt dglwatcher ${CHROOT}/bin
for LIB in `ldd ./sqlickrypt | awk '$$1 ~ "^/" {print $$1}; $$3 ~ "^/" {print $$3}'`; do mkdir -p ${CHROOT}`dirname $$LIB`; cp $$LIB ${CHROOT}$$LIB; done
cp rlgwebd.js /usr/local/bin/rlgwebd.js
cp rlgwebd.js rlgwebd-stop.js ${BINDIR}
mkdir -p /var/local/rlgwebd
cp ${WEBASSETS} ${CHROOT}/var/www
cp rlgwebd.service /usr/lib/systemd/system

12
rlgwebd-stop.js Executable file
View file

@ -0,0 +1,12 @@
#!/usr/bin/env node
var net = require('net');
var sockpath = "/var/local/rlgwebd/ctl";
var sock = net.connect(sockpath, function () {
sock.on('close', function () {
if (process.argv[2] == "debug")
console.log("Control socket closed");
});
sock.write("quit\n");
});

View file

@ -6,8 +6,7 @@ After=network.target syslog.target
Type=simple
Environment=NODE_PATH=/usr/lib/node_modules
ExecStart=/usr/bin/node /usr/local/bin/rlgwebd.js
ExecStop=/usr/bin/socat "EXEC:echo quit" /var/local/rlgwebd/ctl
KillMode=none
ExecStop=/usr/bin/node /usr/local/bin/rlgwebd-stop.js
[Install]
WantedBy=multi-user.target