blob: 2d1e0d7b856f16692719992bc8f37f90548d3ea9 (
plain) (
tree)
|
|
#!/sbin/openrc-run
#init script of lightsd for OpenRC
depend()
{
need sysfs dev-mount
}
start()
{
ebegin "Starting lightsd"
start-stop-daemon -S -b -m -p /run/lightsd.pid -x /usr/bin/lightsd
eend $?
}
stop()
{
ebegin "Stopping lightsd"
start-stop-daemon -s SIGTERM -p /run/lightsd.pid -x /usr/bin/lightsd
eend $?
}
|