00af777a97
A newer version of the scripts fully adapted to pinned spans: * handle_device does not run dahdi_cfg. * A separate UDEV rule script for that: span_config. Should also work for the non-pinned case. * span_assignments, span_types: add actions 'auto' (manually enable all) and 'dumpconfig' (dump current status in the format of configuration file). * Fixed name of span_types and span_assignments (no '-'). * spantype.conf renamed span-types.conf: configuration files do have a dash. * Those two are useful programs, insstalled to /usr/sbin. Signed-off-by: Tzafrir Cohen <tzafrir.cohen@xorcom.com>
71 lines
1.7 KiB
Bash
Executable File
71 lines
1.7 KiB
Bash
Executable File
#! /bin/sh
|
|
#
|
|
# /usr/share/dahdi/span_config
|
|
#
|
|
# Called by UDEV when a dahdi span is added/removed
|
|
#
|
|
|
|
me=`basename $0`
|
|
dir=`dirname $0`
|
|
LOGGER="logger -i -t '$me'"
|
|
NAME=`basename "$DEVPATH" | tr -c 'A-Za-z0-9-' '_'`
|
|
|
|
exec 2> /dev/null
|
|
# Always redirect stderr somewhere, otherwise the shell script will die
|
|
# when it tries to do I/O related stuff on closed file descriptor.
|
|
# Our default is to throw it down the bit-bucket.
|
|
#exec 2> /dev/console
|
|
## If you wish to trace this script:
|
|
#exec 2> "/tmp/${me}.$NAME" 1>&2
|
|
|
|
# Our directory in the beginning, so we can use local lab setup
|
|
PATH="$dir:/usr/sbin:/sbin:/usr/bin:/bin"
|
|
|
|
set -e
|
|
|
|
#echo >&2 "$0($ACTION): DEBUG($# args): '$*'"
|
|
|
|
# Can we pass a different value so we can use
|
|
# alternate (testing) configuration?
|
|
# Meanwhile, make it hard-coded.
|
|
DAHDICONFDIR='/etc/dahdi'
|
|
export DAHDICONFDIR
|
|
|
|
run_dahdi_cfg() {
|
|
span_devpath="$1"
|
|
# Sanity check
|
|
checkit=`"dahdi_cfg" --help 2>&1 | grep -- '-S' | wc -l`
|
|
if [ "$checkit" != 1 ]; then
|
|
$LOGGER "Bad dahdi_cfg (no -S support). Skipping"
|
|
exit 0
|
|
fi
|
|
spanno=`echo "$span_devpath" | sed 's,.*/span-,,'`
|
|
basechan=`cat "$span_devpath/basechan"`
|
|
channels=`cat "$span_devpath/channels"`
|
|
endchan=`expr "$basechan" + "$channels" - 1`
|
|
echo "dahdi_cfg: span $spanno <$basechan-$endchan>"
|
|
dahdi_cfg \
|
|
-c "$DAHDICONFDIR/system.conf" \
|
|
-S "$spanno" \
|
|
-C "$basechan-$endchan"
|
|
asterisk -rx "dahdi create channels $basechan $endchan"
|
|
}
|
|
|
|
case "$ACTION" in
|
|
add)
|
|
echo "$ACTION: $DEVPATH" | $LOGGER
|
|
# Can have alternate dahdi configuration directory for debugging
|
|
# export DAHDICONFDIR="/tmp/xortel/dahdi"
|
|
|
|
run_dahdi_cfg "/sys$DEVPATH" 2>&1 | $LOGGER
|
|
;;
|
|
remove)
|
|
# Nothing to do yet...
|
|
echo "$ACTION: $DEVPATH" | $LOGGER
|
|
;;
|
|
*)
|
|
echo "UNHANDLED: $ACTION: $DEVPATH" | $LOGGER
|
|
;;
|
|
esac
|
|
|