mirror of
https://github.com/LiBwrt-op/openwrt-6.x.git
synced 2026-01-09 20:53:43 +00:00
19 lines
246 B
Bash
Executable File
19 lines
246 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=15
|
|
|
|
SERVICE_DAEMONIZE=1
|
|
SERVICE_WRITE_PID=1
|
|
SERVICE_PID_FILE=/var/run/6distributed.pid
|
|
DISTRIBUTED_BIN=/usr/sbin/6distributed
|
|
|
|
start()
|
|
{
|
|
service_start $DISTRIBUTED_BIN
|
|
}
|
|
|
|
stop()
|
|
{
|
|
service_stop $DISTRIBUTED_BIN
|
|
}
|