You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kamailio/pkg/gentoo/ser.init

34 lines
731 B

#!/sbin/runscript
# Copyright 2002 Frauenhofer Gesellschaft FOKUS, Germany.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header$
depend() {
need net
}
check_config() {
out=`(/usr/sbin/ser -c > /dev/null || true) 2>&1`
echo "$out" | grep -q 'config file ok, exiting...'
if [ "$?" == 1 ]; then
echo -e "There are errors in the configuration. Please fix them first"
echo -e "\n$out\n"
return 1
fi
}
start() {
check_config || return 1
ebegin "Starting ser"
start-stop-daemon --start --quiet --pidfile /var/run/ser.pid \
--exec /usr/sbin/ser -- -P /var/run/ser.pid
eend $?
}
stop() {
ebegin "Stopping ser"
start-stop-daemon --stop --quiet --pidfile /var/run/ser.pid
eend $?
}