From a050ea75938683f3c63bee0f60a766702792d9b7 Mon Sep 17 00:00:00 2001 From: mattf Date: Thu, 29 Mar 2007 17:11:04 +0000 Subject: [PATCH] added copying of asterisk-perl_0.08 to libs in home directory, install.pl git-svn-id: svn://192.168.202.10@575 3d104415-ff17-0410-8863-d5cf3c621b8a --- agc_2-X/trunk/install.pl | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/agc_2-X/trunk/install.pl b/agc_2-X/trunk/install.pl index 2ae7573d..450d9200 100644 --- a/agc_2-X/trunk/install.pl +++ b/agc_2-X/trunk/install.pl @@ -1274,6 +1274,8 @@ print "\nSTARTING ASTGUICLIENT INSTALLATION PHASE...\n"; if ($WEBONLY < 1) { print "Creating $PATHhome/LEADS_IN/DONE directories...\n"; + `mkdir $PATHhome/libs`; + `mkdir $PATHhome/libs/Asterisk`; `mkdir $PATHhome/LEADS_IN`; `mkdir $PATHhome/LEADS_IN/DONE`; `chmod -R 0766 $PATHhome/LEADS_IN`; @@ -1287,6 +1289,10 @@ if ($WEBONLY < 1) print "Copying bin scripts to $PATHhome ...\n"; `cp -f ./bin/* $PATHhome/`; + print "Copying libs to $PATHhome ...\n"; + `cp -f ./extras/Asterisk.pm $PATHhome/libs/`; + `cp -f ./extras/Asterisk/* $PATHhome/libs/Asterisk/`; + print "setting cron scripts to executable...\n"; `chmod 0755 $PATHhome/*`;