mirror of
https://github.com/openwrt/packages.git
synced 2025-01-31 04:51:44 +00:00
9df311619c
Signed-off-by: Ted Hess <thess@kitschensync.net>
15 lines
186 B
Bash
15 lines
186 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2007-2011 OpenWrt.org
|
|
|
|
START=93
|
|
|
|
SSD_DAEMONIZE=1
|
|
|
|
start() {
|
|
service_start /usr/sbin/cmdpad --quiet
|
|
}
|
|
|
|
stop() {
|
|
service_stop /usr/sbin/cmdpad
|
|
}
|