2010-12-17 13:31:44 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
|
|
|
#
|
2011-11-04 22:12:41 +00:00
|
|
|
# Copyright (C) 2010-2011 OpenWrt.org
|
2010-12-17 13:31:44 +00:00
|
|
|
# Copyright (C) 2010 Alfred E. Heggestad
|
|
|
|
#
|
|
|
|
|
|
|
|
START=92
|
|
|
|
BIN=baresip
|
|
|
|
OPTIONS=-d
|
|
|
|
|
|
|
|
start() {
|
2011-11-04 22:12:41 +00:00
|
|
|
start-stop-daemon -S -q -x $BIN -- $OPTIONS
|
2010-12-17 13:31:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
2011-11-04 22:12:41 +00:00
|
|
|
start-stop-daemon -K -q -x $BIN
|
2010-12-17 13:31:44 +00:00
|
|
|
}
|