37cc341dbd
git-svn-id: svn://svn.openwrt.org/openwrt/packages@24640 3c298f89-4303-0410-b956-a3cf2f4a3e73
20 lines
233 B
Bash
20 lines
233 B
Bash
#!/bin/sh /etc/rc.common
|
|
#
|
|
# Copyright (C) 2010 Alfred E. Heggestad
|
|
#
|
|
|
|
START=92
|
|
BIN=baresip
|
|
DEFAULT=/etc/default/$BIN
|
|
OPTIONS=-d
|
|
|
|
start() {
|
|
[ -f $DEFAULT ] && . $DEFAULT
|
|
$BIN $OPTIONS
|
|
}
|
|
|
|
stop() {
|
|
killall $BIN
|
|
}
|
|
|