74b4a18a59
git-svn-id: svn://svn.openwrt.org/openwrt/packages@29171 3c298f89-4303-0410-b956-a3cf2f4a3e73
15 lines
207 B
Bash
15 lines
207 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2010-2011 OpenWrt.org
|
|
# Copyright (C) 2010 Alfred E. Heggestad
|
|
#
|
|
|
|
START=92
|
|
|
|
start() {
|
|
service_start /usr/bin/baresip -d
|
|
}
|
|
|
|
stop() {
|
|
service_stop /usr/bin/baresip
|
|
}
|