fusionpbx-install.sh/debian/pre-install.sh

14 lines
299 B
Bash
Raw Permalink Normal View History

2017-04-04 05:39:57 +02:00
#!/bin/sh
#upgrade the packages
2019-02-17 17:44:51 +01:00
apt-get update && apt-get upgrade -y
2017-04-04 05:39:57 +02:00
2017-10-09 18:17:19 +02:00
#install packages
2019-02-17 17:44:51 +01:00
apt-get install -y git lsb-release
2017-04-04 05:39:57 +02:00
#get the install script
cd /usr/src && git clone https://github.com/fusionpbx/fusionpbx-install.sh.git
2017-04-04 06:32:48 +02:00
#change the working directory
cd /usr/src/fusionpbx-install.sh/debian