2007-02-26 11:19:29 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
2011-11-09 23:49:26 +00:00
|
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
2007-02-26 11:19:29 +00:00
|
|
|
|
|
|
|
START=60
|
|
|
|
|
2011-11-09 23:49:26 +00:00
|
|
|
SERVICE_USE_PID=1
|
2007-02-26 11:19:29 +00:00
|
|
|
|
|
|
|
start() {
|
2011-11-09 23:49:26 +00:00
|
|
|
service_start /usr/sbin/totd -c /etc/totd.conf
|
2007-02-26 11:19:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
2011-11-09 23:49:26 +00:00
|
|
|
service_stop /usr/sbin/totd
|
2007-02-26 11:19:29 +00:00
|
|
|
}
|