33 lines
735 B
Bash
Executable File
33 lines
735 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#move to script directory so all relative paths work
|
|
cd "$(dirname "$0")"
|
|
|
|
#includes
|
|
. ./config.sh
|
|
. ./colors.sh
|
|
|
|
#send a message
|
|
verbose "Installing FusionPBX"
|
|
|
|
#install dependencies
|
|
apt-get install -y vim git dbus haveged ssl-cert qrencode
|
|
apt-get install -y ghostscript libtiff5-dev libtiff-tools at
|
|
|
|
#get the branch
|
|
if [ .$system_branch = .'master' ]; then
|
|
verbose "Using master"
|
|
branch=""
|
|
else
|
|
verbose "Using version $system_branch"
|
|
branch="-b $system_branch"
|
|
fi
|
|
|
|
#add the cache directory
|
|
mkdir -p /var/cache/fusionpbx
|
|
chown -R www-data:www-data /var/cache/fusionpbx
|
|
|
|
#get the source code
|
|
git clone $branch https://github.com/fusionpbx/fusionpbx.git /var/www/fusionpbx
|
|
chown -R www-data:www-data /var/www/fusionpbx
|