18 lines
315 B
SYSTEMD
18 lines
315 B
SYSTEMD
|
[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
|
||
|
|