forked from norman/fusionpbx-install.sh-github-mirror
17 lines
392 B
Bash
Executable File
17 lines
392 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Set non-interactive mode for apt-get
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
#upgrade the packages
|
|
apt-get update && apt-get upgrade -y
|
|
|
|
#install packages
|
|
apt-get install -y git lsb-release
|
|
|
|
#get the install script
|
|
cd /usr/src && git clone https://git.nsinnovations.net/nsinnovations/fusionpbx-install.sh.git
|
|
|
|
#change the working directory
|
|
cd /usr/src/fusionpbx-install.sh/ubuntu
|