packages/net/baresip/files/baresip.init

18 lines
244 B
Plaintext
Raw Normal View History

#!/bin/sh /etc/rc.common
#
# Copyright (C) 2010-2011 OpenWrt.org
# Copyright (C) 2010 Alfred E. Heggestad
#
START=92
BIN=baresip
OPTIONS=-d
start() {
start-stop-daemon -S -q -x $BIN -- $OPTIONS
}
stop() {
start-stop-daemon -K -q -x $BIN
}