mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-02 07:21:03 +08:00
16 lines
223 B
Bash
16 lines
223 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2009-2011 OpenWrt.org
|
|
# Copyright (C) 2009 Jakob Pfeiffer
|
|
|
|
START=50
|
|
|
|
SERVICE_USE_PID=1
|
|
|
|
start() {
|
|
service_start /usr/sbin/opennhrp -d
|
|
}
|
|
|
|
stop() {
|
|
service_stop /usr/sbin/opennhrp
|
|
}
|