packages/net/baresip/files/baresip.init

20 lines
233 B
Plaintext
Raw Normal View History

#!/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
}