14 lines
146 B
Plaintext
14 lines
146 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
|
||
|
START=65
|
||
|
|
||
|
SERVICE_DAEMONIZE=1
|
||
|
|
||
|
start() {
|
||
|
service_start /usr/bin/owwnogui
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
service_stop /usr/bin/owwnogui
|
||
|
}
|