summaryrefslogtreecommitdiff
path: root/dahdi.init
diff options
context:
space:
mode:
Diffstat (limited to 'dahdi.init')
-rwxr-xr-xdahdi.init14
1 files changed, 14 insertions, 0 deletions
diff --git a/dahdi.init b/dahdi.init
index 5c1a3f0..46ee07e 100755
--- a/dahdi.init
+++ b/dahdi.init
@@ -200,6 +200,16 @@ case "$1" in
modprobe dahdi_dummy 2> /dev/null
fi
+ conf_file=/etc/dahdi/system.conf
+ temp_conf_file=""
+ if [ `dahdi_scan | grep "^type=" | sed -n 1p | grep "^type=digital"` ]; then
+ if [ "`cat $conf_file | grep "^span=1"`" = "" ]; then
+ temp_conf_file=`mktemp /tmp/tmp.dahdi_system_conf.XXX`
+ echo "span=1,1,0,esf,b8zs" > $temp_conf_file
+ DAHDI_CFG_CMD="$DAHDI_CFG -c $temp_conf_file"
+ fi
+ fi
+
if [ $system = debian ]; then
echo -n "Running dahdi_cfg: "
$DAHDI_CFG_CMD 2> /dev/null && echo -n "done"
@@ -209,6 +219,10 @@ case "$1" in
fi
RETVAL=$?
+ if [ -f $temp_conf_file ]; then
+ rm $temp_conf_file;
+ fi
+
if [ "$LOCKFILE" != '' ]; then
[ $RETVAL -eq 0 ] && touch $LOCKFILE
fi