Novacomd Init Script
Revision as of 17:56, 30 September 2009 by PuffTheMagic (talk | contribs) (New page: <source lang="bash"> #!/sbin/runscript start() { ebegin "Starting novacomd" start-stop-daemon --start --background --exec /opt/bin/novacomd result=$? eend ...)
<source lang="bash">
- !/sbin/runscript
start() {
ebegin "Starting novacomd" start-stop-daemon --start --background --exec /opt/bin/novacomd result=$? eend $result
}
stop() {
ebegin "Stopping novacomd" start-stop-daemon --stop --quiet --exec /opt/bin/novacomd result=$? eend $result
} </source>