mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-02 01:59:24 +08:00
14 lines
144 B
Bash
14 lines
144 B
Bash
#!/bin/sh /etc/rc.common
|
|
|
|
START=65
|
|
|
|
SERVICE_DAEMONIZE=1
|
|
|
|
start() {
|
|
service_start /usr/bin/bluelog
|
|
}
|
|
|
|
stop() {
|
|
service_stop /usr/bin/bluelog
|
|
}
|