Novacomd Init Script
<source lang="bash">
- !/sbin/runscript
start() {
ebegin "Starting novacomd" start-stop-daemon --start --background --exec /opt/Palm/novacom/novacomd result=$? eend $result
}
stop() {
ebegin "Stopping novacomd" start-stop-daemon --stop --quiet --exec /opt/Palm/novacom/novacomd result=$? eend $result
} </source>