Added service file for systemd
This commit is contained in:
parent
3e318754de
commit
3686064b1f
1 changed files with 17 additions and 0 deletions
17
sleeplight.service
Normal file
17
sleeplight.service
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
[Unit]
|
||||||
|
Description=SleepLight (Controls the gpio pins to light LEDs at bedtime)
|
||||||
|
After=syslog.target
|
||||||
|
After=time-sync.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
RestartSec=2s
|
||||||
|
Type=simple
|
||||||
|
User=root
|
||||||
|
Group=root
|
||||||
|
WorkingDirectory=/opt/sleeplight
|
||||||
|
ExecStart=/usr/local/bin/node ./runSchedule.js
|
||||||
|
Restart=always
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
|
|
Loading…
Reference in a new issue