kenzok8-packages/quickstart/files/quickstart.init
2024-03-21 01:10:01 +08:00

14 lines
255 B
Bash
Executable File

#!/bin/sh /etc/rc.common
START=92
USE_PROCD=1
start_service() {
procd_open_instance
procd_set_param command /usr/sbin/quickstart serve --unix /var/run/quickstart/local.sock
procd_set_param stderr 1
procd_set_param respawn
procd_close_instance
}