Is this essentially the same things as
 
astupd.sh

for those with the standard "ACID" installation?
 
Ken Jamrogowicz
On Wed, Feb 17, 2010 at 11:59 AM, Jim Duuuude <telesistant@hotmail.com> wrote:

Note, the lines without '#' are the ones that are typed into the Linux
prompt:


cd /usr/src
#or whatever directory has the 'asterisk' directory which contains
#the asterisk, zaptel and libri sources are.

mv asterisk asterisk.old
#this saves the old source tree as 'asterisk.old'

svn co svn://qrvc.com/projects/allstar/astsrc-1.4.23-pre/trunk
#this
downloads the new source tree from SVN

mv trunk asterisk
#this renames the newly downloaded source tree as 'asterisk'

cd asterisk
cd zaptel
make install
cd ../libpri
make install
cd ../asterisk
./configure
make install
#Re-builds and installs the whole thing

JIM