13 lines
247 B
Plaintext
13 lines
247 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
if [ "$ACTION" != 'add' ]; then
|
||
|
# Nothing to do here
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
fxotune_cfg='/etc/fxotune.conf'
|
||
|
if [ -r "$fxotune_cfg" ]; then
|
||
|
echo "fxotune: span $SPANNO <$BASECHAN-$ENDCHAN> ($DEVPATH)"
|
||
|
fxotune -s -b "$BASECHAN" -e "$ENDCHAN"
|
||
|
fi
|