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.
gentoo-overlay/net-misc/dahdi-tools/files/dahdi.init2

38 lines
588 B

#!/sbin/runscript
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
depend() {
need net
}
checkconfig() {
if [ ! -f /etc/dahdi/system.conf ]; then
eerror "/etc/dahdi/system.conf not found. Nothing to do."
return 1
fi
return 0
}
start() {
checkconfig || return 1
ebegin "Starting DAHDI"
/usr/sbin/dahdi_cfg
eend $?
if [ $? -eq 0 -a -r /etc/fxotune.conf ]; then
ebegin "Loading DAHDI fxotune.conf"
/usr/sbin/fxotune -s
eend $?
fi
}
stop() {
ebegin "Stopping DAHDI"
/usr/sbin/dahdi_cfg -s
eend
}