f0f4498195
git-svn-id: svn://svn.openwrt.org/openwrt/packages@18959 3c298f89-4303-0410-b956-a3cf2f4a3e73
14 lines
170 B
Bash
Executable File
14 lines
170 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2009 OpenWrt.org
|
|
START=50
|
|
# Copyright (C) 2009 Jakob Pfeiffer
|
|
|
|
start() {
|
|
/usr/sbin/opennhrp -d
|
|
}
|
|
|
|
stop() {
|
|
killall opennhrp
|
|
}
|
|
|