b3bd07a145
* switch to uclibcxx * add requestor package, init scripts & conffiles * drop obsolete patches git-svn-id: svn://svn.openwrt.org/openwrt/packages@30425 3c298f89-4303-0410-b956-a3cf2f4a3e73
14 lines
138 B
Bash
14 lines
138 B
Bash
#!/bin/sh /etc/rc.common
|
|
|
|
START=90
|
|
STOP=90
|
|
|
|
start() {
|
|
mkdir -p /var/lib/dibbler
|
|
dibbler-client start
|
|
}
|
|
|
|
stop() {
|
|
dibbler-client stop
|
|
}
|