Moderators: gerski, enjay, williamconley, Op3r, Staydog, gardo, mflorell, MJCoate, mcargile, Kumba, Michael_N
#!/bin/bash
function choice {
CHOICE=''
local prompt="$*"
local answer
read -p "$prompt" answer
case "$answer" in
[yY1] ) CHOICE='y';;
[nN0] ) CHOICe='n';;
* ) CHOICE="$answer";;
esac
}
echo "Asterisk v.1.4 with wanpipe voice"
echo
choice "Continue? (N/y) : "
if [ "$CHOICE" == "y" ]; then
echo
choice "Do you use centos OS? (N/y) : "
SCENTOS="$CHOICE"
echo
choice "Do you have a Sangoma T1 card installed? (N/y) : "
SANGOMA="$CHOICE"
echo
choice "Do you have a Sangoma VoiceTime USB timer installed? (N/y) : "
SANGOMAVT="$CHOICE"
choice "Do you want to put recording in RAM? (N/y) : "
SFSTAB="$CHOICE"
if [ "$SCENTOS" == "y" ]; then
yum -y install kernel-devel-$(uname -r) libtool install gcc patch perl bison gcc-c++ ncurses ncurses-devel flex libtermcap-devel lksctp-tools-devel
rpm -qa | grep zaptel
fi
echo "We will download all file :"
cd /usr/src/tars
wget http://downloads.digium.com/pub/asteris ... 1.2.tar.gz
wget http://downloads.digium.com/pub/libpri/ ... 4.9.tar.gz
wget http://downloads.digium.com/pub/zaptel/ ... 2.1.tar.gz
wget http://downloads.digium.com/pub/telepho ... ent.tar.gz
wget http://downloads.digium.com/pub/telepho ... ent.tar.gz
wget http://downloads.digium.com/pub/telepho ... ent.tar.gz
wget http://downloads.digium.com/pub/telepho ... ent.tar.gz
wget http://downloads.digium.com/pub/telepho ... ent.tar.gz
wget http://downloads.digium.com/pub/telepho ... ent.tar.gz
wget http://downloads.digium.com/pub/telepho ... gsm.tar.gz
wget http://downloads.digium.com/pub/telepho ... law.tar.gz
wget http://downloads.digium.com/pub/telepho ... wav.tar.gz
wget ftp://ftp.sangoma.com/linux/current_wan ... .2.7.1.tgz
wget ftp://ftp.sangoma.com/linux/wanpipe_voi ... -1.0.9.tgz
echo "We will patch asterisk 1.4 :"
mkdir -p /usr/src/astguiclient/patches-1.4
cd /usr/src/astguiclient/patches-1.4
wget http://public.vicidial.com/conf/patches/enter.h
wget http://public.vicidial.com/conf/patches/leave.h
wget http://public.vicidial.com/conf/patches ... -1.4.patch
wget http://public.vicidial.com/conf/patches ... -asm.patch
echo "We will Uncompress files for install :"
cd /usr/src
tar -xzf /usr/src/tars/asterisk-1.4.21.2.tar.gz
tar -xzf /usr/src/tars/libpri-1.4.9.tar.gz
tar -xzf /usr/src/tars/zaptel-1.4.12.1.tar.gz
tar -xzf /usr/src/tars/wanpipe-3.2.7.1.tgz
tar -xzf /usr/src/tars/wanpipe-voicetime-1.0.9.tgz
echo "Finished!"
echo -n "Moving add-on files to Asterisk Source Tree... "
cp /usr/src/astguiclient/patches-1.4/enter.h /usr/src/asterisk-1.4.21.2/apps/enter.h
cp /usr/src/astguiclient/patches-1.4/leave.h /usr/src/asterisk-1.4.21.2/apps/leave.h
echo "Done!"
echo "Patching Asterisk"
cd /usr/src/asterisk-1.4.21.2/codecs/gsm
patch -p1 Makefile /usr/src/astguiclient/patches-1.4/asterisk-gsm-1.4.patch
cd inc
patch -p1 private.h /usr/src/astguiclient/patches-1.4/asterisk-gsm-asm.patch
echo "Patching Done!"
echo "Now starting source compile"
cd /usr/src/libpri-1.4.9
make clean
make
make install
cd /usr/src/zaptel-1.4.12.1
make clean
./configure
make
make install
make zttool
rm /etc/init.d/zaptel
rm /etc/rc.d/init.d/zaptel
if [ "$SANGOMA" == "y" ]; then
cd /usr/src/wanpipe-3.2.7.1
./Setup install --silent --protocol=TDM
fi
if [ "$SANGOMAVT" == "y" ]; then
cd /usr/src/wanpipe-voicetime-1.0.9
make ZAPDIR=/usr/src/zaptel-1.4.12.1/kernel
make install
fi
cd /usr/src/asterisk-1.4.21.2
make clean
./configure
make
make install
make samples
echo "Finished Compiling"
echo -n "Doing Sound installation for WAV ULAW GSM formats... "
if [ "$SFSTAB" == "y" ]; then
echo "tmpfs /var/spool/asterisk/monitor tmpfs rw 0 0" >> /etc/fstab
fi
cd /var/lib/asterisk/sounds
tar -xzf /usr/src/tars/asterisk-core-sounds-en-gsm-current.tar.gz
tar -xzf /usr/src/tars/asterisk-core-sounds-en-ulaw-current.tar.gz
tar -xzf /usr/src/tars/asterisk-core-sounds-en-wav-current.tar.gz
tar -xzf /usr/src/tars/asterisk-extra-sounds-en-gsm-current.tar.gz
tar -xzf /usr/src/tars/asterisk-extra-sounds-en-ulaw-current.tar.gz
tar -xzf /usr/src/tars/asterisk-extra-sounds-en-wav-current.tar.gz
wget http://public.vicidial.com/conf/conf.gsm
echo "Done!"
echo -n "Converting sounds to support ULAW, WAV, and GSM formats... "
sox conf.gsm conf.wav
sox conf.gsm -t ul conf.ulaw
cp conf.gsm park.gsm
cp conf.ulaw park.ulaw
cp conf.wav park.wav
echo -n "25% "
cd /var/lib/asterisk
ln -s moh mohmp3
mkdir mohmp3
cd mohmp3
tar -xzf /usr/src/tars/asterisk-moh-freeplay-gsm.tar.gz
tar -xzf /usr/src/tars/asterisk-moh-freeplay-ulaw.tar.gz
tar -xzf /usr/src/tars/asterisk-moh-freeplay-wav.tar.gz
rm CHANGES*
rm LICENSE*
rm .asterisk*
mkdir /var/lib/asterisk/quiet-mp3
echo -n "50% "
cd /var/lib/asterisk/quiet-mp3
sox ../mohmp3/macroform-cold_day.wav macroform-cold_day.wav vol 0.25
sox ../mohmp3/macroform-cold_day.gsm macroform-cold_day.gsm vol 0.25
sox -t ul -r 8000 -c 1 ../mohmp3/macroform-cold_day.ulaw -t ul macroform-cold_day.ulaw vol 0.25
sox ../mohmp3/macroform-robot_dity.wav macroform-robot_dity.wav vol 0.25
sox ../mohmp3/macroform-robot_dity.gsm macroform-robot_dity.gsm vol 0.25
sox -t ul -r 8000 -c 1 ../mohmp3/macroform-robot_dity.ulaw -t ul macroform-robot_dity.ulaw vol 0.25
sox ../mohmp3/macroform-the_simplicity.wav macroform-the_simplicity.wav vol 0.25
sox ../mohmp3/macroform-the_simplicity.gsm macroform-the_simplicity.gsm vol 0.25
sox -t ul -r 8000 -c 1 ../mohmp3/macroform-the_simplicity.ulaw -t ul macroform-the_simplicity.ulaw vol 0.25
sox ../mohmp3/reno_project-system.wav reno_project-system.wav vol 0.25
sox ../mohmp3/reno_project-system.gsm reno_project-system.gsm vol 0.25
echo -n "75% "
sox -t ul -r 8000 -c 1 ../mohmp3/reno_project-system.ulaw -t ul reno_project-system.ulaw vol 0.25
sox ../mohmp3/manolo_camp-morning_coffee.wav manolo_camp-morning_coffee.wav vol 0.25
sox ../mohmp3/manolo_camp-morning_coffee.gsm manolo_camp-morning_coffee.gsm vol 0.25
sox -t ul -r 8000 -c 1 ../mohmp3/manolo_camp-morning_coffee.ulaw -t ul manolo_camp-morning_coffee.ulaw vol 0.25
echo "Finished!"
echo
echo "Now asterisk is done thank --By Brett05!"
fi
# Zaptel module name, please replace with driver name for hardware card
# If using a wanpipe_voicetime modules, please change to wanpipe_voicetime
ZAP_MOD=ztdummy
# Zaptel module name, please replace with driver name for hardware card
# If using a wanpipe_voicetime modules, please change to wanpipe_voicetime
ZAP_MOD=wanpipe_voicetime
Return to Jobs - Requests for Consultation
Users browsing this forum: No registered users and 15 guests