annotate rlgwebd.service @ 194:5483d413a45b
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.
author |
John "Elwin" Edwards |
date |
Thu, 14 Jan 2016 19:10:46 -0500 |
parents |
80ca029f0906 |
children |
3bdee6371c3f |
rev |
line source |
192
|
1 [Unit]
|
|
2 Description=RLGWebD app daemon
|
|
3 After=network.target syslog.target
|
|
4
|
|
5 [Service]
|
|
6 Type=simple
|
|
7 Environment=NODE_PATH=/usr/lib/node_modules
|
|
8 ExecStart=/usr/bin/node /usr/local/bin/rlgwebd.js
|
193
|
9 ExecStop=/usr/bin/node /usr/local/bin/rlgwebd-stop.js
|
192
|
10
|
|
11 [Install]
|
|
12 WantedBy=multi-user.target
|