39a8588d75
git-svn-id: svn://svn.openwrt.org/openwrt/packages@10135 3c298f89-4303-0410-b956-a3cf2f4a3e73
12 lines
172 B
Bash
12 lines
172 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
START=93
|
|
|
|
start() {
|
|
/usr/sbin/cmdpad --quiet > /dev/null &
|
|
}
|
|
|
|
stop() {
|
|
killall cmdpad
|
|
}
|
|
|